@@ -31,12 +31,14 @@ |
||
| 31 | 31 | |
| 32 | 32 | $fs = new Files(); |
| 33 | 33 | |
| 34 | - if ($fs->isDirectory(__DIR__ . '/../app/migrations')) { |
|
| 34 | + if ($fs->isDirectory(__DIR__ . '/../app/migrations')) |
|
| 35 | + { |
|
| 35 | 36 | $fs->deleteDirectory(__DIR__ . '/../app/migrations'); |
| 36 | 37 | } |
| 37 | 38 | |
| 38 | 39 | $runtime = $this->app->get(DirectoriesInterface::class)->get('runtime'); |
| 39 | - if ($fs->isDirectory($runtime)) { |
|
| 40 | + if ($fs->isDirectory($runtime)) |
|
| 41 | + { |
|
| 40 | 42 | $fs->deleteDirectory($runtime); |
| 41 | 43 | } |
| 42 | 44 | } |
@@ -20,9 +20,12 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $app = $this->makeApp(); |
| 22 | 22 | |
| 23 | - try { |
|
| 23 | + try |
|
| 24 | + { |
|
| 24 | 25 | throw new \Error('test error'); |
| 25 | - } catch (\Error $e) { |
|
| 26 | + } |
|
| 27 | + catch (\Error $e) |
|
| 28 | + { |
|
| 26 | 29 | /** @var SnapshotInterface $s */ |
| 27 | 30 | $s = $app->get(SnapshotterInterface::class)->register($e); |
| 28 | 31 | } |
@@ -33,7 +33,8 @@ discard block |
||
| 33 | 33 | public function setUp(): void |
| 34 | 34 | { |
| 35 | 35 | exec('protoc 2>&1', $out); |
| 36 | - if (strpos(join("\n", $out), '--php_out') === false) { |
|
| 36 | + if (strpos(join("\n", $out), '--php_out') === false) |
|
| 37 | + { |
|
| 37 | 38 | $this->markTestSkipped('Protoc binary is missing'); |
| 38 | 39 | } |
| 39 | 40 | |
@@ -52,11 +53,13 @@ discard block |
||
| 52 | 53 | |
| 53 | 54 | $fs = new Files(); |
| 54 | 55 | |
| 55 | - if ($fs->isDirectory($this->app->dir('app') . 'src/Service')) { |
|
| 56 | + if ($fs->isDirectory($this->app->dir('app') . 'src/Service')) |
|
| 57 | + { |
|
| 56 | 58 | $fs->deleteDirectory($this->app->dir('app') . 'src/Service'); |
| 57 | 59 | } |
| 58 | 60 | |
| 59 | - if ($fs->isDirectory($this->app->dir('app') . 'src/GPBMetadata')) { |
|
| 61 | + if ($fs->isDirectory($this->app->dir('app') . 'src/GPBMetadata')) |
|
| 62 | + { |
|
| 60 | 63 | $fs->deleteDirectory($this->app->dir('app') . 'src/GPBMetadata'); |
| 61 | 64 | } |
| 62 | 65 | } |
@@ -20,7 +20,8 @@ discard block |
||
| 20 | 20 | public function setUp(): void |
| 21 | 21 | { |
| 22 | 22 | exec('protoc 2>&1', $out); |
| 23 | - if (strpos(join("\n", $out), '--php_out') === false) { |
|
| 23 | + if (strpos(join("\n", $out), '--php_out') === false) |
|
| 24 | + { |
|
| 24 | 25 | $this->markTestSkipped('Protoc binary is missing'); |
| 25 | 26 | return; |
| 26 | 27 | } |
@@ -40,11 +41,13 @@ discard block |
||
| 40 | 41 | |
| 41 | 42 | $fs = new Files(); |
| 42 | 43 | |
| 43 | - if ($fs->isDirectory($this->app->dir('app') . 'src/Service')) { |
|
| 44 | + if ($fs->isDirectory($this->app->dir('app') . 'src/Service')) |
|
| 45 | + { |
|
| 44 | 46 | $fs->deleteDirectory($this->app->dir('app') . 'src/Service'); |
| 45 | 47 | } |
| 46 | 48 | |
| 47 | - if ($fs->isDirectory($this->app->dir('app') . 'src/GPBMetadata')) { |
|
| 49 | + if ($fs->isDirectory($this->app->dir('app') . 'src/GPBMetadata')) |
|
| 50 | + { |
|
| 48 | 51 | $fs->deleteDirectory($this->app->dir('app') . 'src/GPBMetadata'); |
| 49 | 52 | } |
| 50 | 53 | } |
@@ -20,7 +20,8 @@ |
||
| 20 | 20 | |
| 21 | 21 | public function tearDown(): void |
| 22 | 22 | { |
| 23 | - if (file_exists(self::TEST_FILE)) { |
|
| 23 | + if (file_exists(self::TEST_FILE)) |
|
| 24 | + { |
|
| 24 | 25 | unlink(self::TEST_FILE); |
| 25 | 26 | } |
| 26 | 27 | |
@@ -31,7 +31,8 @@ |
||
| 31 | 31 | |
| 32 | 32 | public function compile(string $path, ContextInterface $context): void |
| 33 | 33 | { |
| 34 | - if ($path == 'custom:error') { |
|
| 34 | + if ($path == 'custom:error') |
|
| 35 | + { |
|
| 35 | 36 | throw new EngineException('Unable to compile custom:error'); |
| 36 | 37 | } |
| 37 | 38 | } |
@@ -18,7 +18,8 @@ discard block |
||
| 18 | 18 | { |
| 19 | 19 | public function testSetSid(): void |
| 20 | 20 | { |
| 21 | - $this->http->setHandler(function () { |
|
| 21 | + $this->http->setHandler(function () |
|
| 22 | + { |
|
| 22 | 23 | return ++$this->session()->getSection('cli')->value; |
| 23 | 24 | }); |
| 24 | 25 | |
@@ -32,7 +33,8 @@ discard block |
||
| 32 | 33 | |
| 33 | 34 | public function testSessionResume(): void |
| 34 | 35 | { |
| 35 | - $this->http->setHandler(function () { |
|
| 36 | + $this->http->setHandler(function () |
|
| 37 | + { |
|
| 36 | 38 | return ++$this->session()->getSection('cli')->value; |
| 37 | 39 | }); |
| 38 | 40 | |
@@ -56,7 +58,8 @@ discard block |
||
| 56 | 58 | |
| 57 | 59 | public function testSessionRegenerateId(): void |
| 58 | 60 | { |
| 59 | - $this->http->setHandler(function () { |
|
| 61 | + $this->http->setHandler(function () |
|
| 62 | + { |
|
| 60 | 63 | return ++$this->session()->getSection('cli')->value; |
| 61 | 64 | }); |
| 62 | 65 | |
@@ -73,7 +76,8 @@ discard block |
||
| 73 | 76 | $this->assertSame(200, $result->getStatusCode()); |
| 74 | 77 | $this->assertSame('2', $result->getBody()->__toString()); |
| 75 | 78 | |
| 76 | - $this->http->setHandler(function () { |
|
| 79 | + $this->http->setHandler(function () |
|
| 80 | + { |
|
| 77 | 81 | $this->session()->regenerateID(false); |
| 78 | 82 | |
| 79 | 83 | return ++$this->session()->getSection('cli')->value; |
@@ -92,7 +96,8 @@ discard block |
||
| 92 | 96 | |
| 93 | 97 | public function testDestroySession(): void |
| 94 | 98 | { |
| 95 | - $this->http->setHandler(function () { |
|
| 99 | + $this->http->setHandler(function () |
|
| 100 | + { |
|
| 96 | 101 | return ++$this->session()->getSection('cli')->value; |
| 97 | 102 | }); |
| 98 | 103 | |
@@ -105,7 +110,8 @@ discard block |
||
| 105 | 110 | ]); |
| 106 | 111 | $this->assertSame(200, $result->getStatusCode()); |
| 107 | 112 | $this->assertSame('2', $result->getBody()->__toString()); |
| 108 | - $this->http->setHandler(function () { |
|
| 113 | + $this->http->setHandler(function () |
|
| 114 | + { |
|
| 109 | 115 | $this->session()->destroy(); |
| 110 | 116 | $this->assertFalse($this->session()->isStarted()); |
| 111 | 117 | |
@@ -25,7 +25,8 @@ |
||
| 25 | 25 | |
| 26 | 26 | public function setUp(): void |
| 27 | 27 | { |
| 28 | - $this->bufferEmitter = new class() implements EmitterInterface { |
|
| 28 | + $this->bufferEmitter = new class() implements EmitterInterface |
|
| 29 | + { |
|
| 29 | 30 | public $response; |
| 30 | 31 | |
| 31 | 32 | public function emit(ResponseInterface $response): bool |
@@ -26,10 +26,12 @@ discard block |
||
| 26 | 26 | $this->auth = $auth; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - public function do(GuardInterface $guard) |
|
| 29 | + public function do{ |
|
| 30 | + (GuardInterface $guard) |
|
| 30 | 31 | { |
| 31 | 32 | if (!$guard->allows('do')) { |
| 32 | 33 | throw new ControllerException("Unauthorized permission 'do'", ControllerException::FORBIDDEN); |
| 34 | + } |
|
| 33 | 35 | } |
| 34 | 36 | |
| 35 | 37 | return 'ok'; |
@@ -37,7 +39,8 @@ discard block |
||
| 37 | 39 | |
| 38 | 40 | public function token(AuthContextInterface $authContext) |
| 39 | 41 | { |
| 40 | - if ($authContext->getToken() !== null) { |
|
| 42 | + if ($authContext->getToken() !== null) |
|
| 43 | + { |
|
| 41 | 44 | return $authContext->getToken()->getID(); |
| 42 | 45 | } |
| 43 | 46 | |
@@ -55,7 +58,8 @@ discard block |
||
| 55 | 58 | |
| 56 | 59 | public function token2() |
| 57 | 60 | { |
| 58 | - if ($this->auth->getToken() !== null) { |
|
| 61 | + if ($this->auth->getToken() !== null) |
|
| 62 | + { |
|
| 59 | 63 | return $this->auth->getToken()->getID(); |
| 60 | 64 | } |
| 61 | 65 | |