From e68c48a7138916a61202f7ccd0e5fefc0c9cb2d4 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Mon, 16 May 2022 11:27:25 +0200 Subject: [PATCH] fix: make numbers more readable --- src/Appwrite/Migration/Version/V13.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Appwrite/Migration/Version/V13.php b/src/Appwrite/Migration/Version/V13.php index 6b7a907691..4109072816 100644 --- a/src/Appwrite/Migration/Version/V13.php +++ b/src/Appwrite/Migration/Version/V13.php @@ -162,7 +162,7 @@ class V13 extends Migration /** * Increase stdout size. */ - $this->projectDB->updateAttribute($id, 'stdout', size: 1000000); + $this->projectDB->updateAttribute($id, 'stdout', size: 1_000_000); } catch (\Throwable $th) { Console::warning("'stdout' from {$id}: {$th->getMessage()}"); } @@ -170,7 +170,7 @@ class V13 extends Migration /** * Increase stderr size. */ - $this->projectDB->updateAttribute($id, 'stderr', size: 1000000); + $this->projectDB->updateAttribute($id, 'stderr', size: 1_000_000); } catch (\Throwable $th) { Console::warning("'stderr' from {$id}: {$th->getMessage()}"); } @@ -182,7 +182,7 @@ class V13 extends Migration * Increase response size. */ $this->projectDB->renameAttribute($id, 'stdout', 'response'); - $this->projectDB->updateAttribute($id, 'response', size: 1000000); + $this->projectDB->updateAttribute($id, 'response', size: 1_000_000); } catch (\Throwable $th) { Console::warning("'stdout' from {$id}: {$th->getMessage()}"); } @@ -190,7 +190,7 @@ class V13 extends Migration /** * Increase stderr size. */ - $this->projectDB->updateAttribute($id, 'stderr', size: 1000000); + $this->projectDB->updateAttribute($id, 'stderr', size: 1_000_000); } catch (\Throwable $th) { Console::warning("'stderr' from {$id}: {$th->getMessage()}"); }