| @@ -15,7 +15,6 @@ | ||
| 15 | 15 | use App\Controller\AppController; | 
| 16 | 16 | use Cake\Controller\Component\AuthComponent; | 
| 17 | 17 | use Cake\Core\Configure; | 
| 18 | -use Cake\Event\Event; | |
| 19 | 18 | |
| 20 | 19 | /** | 
| 21 | 20 | * Api App Controller | 
| @@ -1,6 +1,6 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types = 1); | |
| 3 | +declare(strict_types=1); | |
| 4 | 4 | |
| 5 | 5 | /** | 
| 6 | 6 | * Saito - The Threaded Web Forum | 
| @@ -12,7 +12,6 @@ | ||
| 12 | 12 | |
| 13 | 13 | namespace Bookmarks\Lib; | 
| 14 | 14 | |
| 15 | -use App\Controller\Component\CurrentUserComponent; | |
| 16 | 15 | use Cake\ORM\TableRegistry; | 
| 17 | 16 | use Saito\User\CurrentUser\CurrentUserInterface; | 
| 18 | 17 | |
| @@ -1,6 +1,6 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types = 1); | |
| 3 | +declare(strict_types=1); | |
| 4 | 4 | |
| 5 | 5 | /** | 
| 6 | 6 | * Saito - The Threaded Web Forum | 
| @@ -4,7 +4,6 @@ | ||
| 4 | 4 | |
| 5 | 5 | use App\Controller\AppController; | 
| 6 | 6 | use App\Model\Table\EntriesTable; | 
| 7 | -use Cake\Core\Configure; | |
| 8 | 7 | use Cake\Event\Event; | 
| 9 | 8 | use Cake\Http\Exception\BadRequestException; | 
| 10 | 9 | use Feeds\Model\Behavior\FeedsPostingBehavior; | 
| @@ -13,13 +13,11 @@ | ||
| 13 | 13 | namespace ImageUploader\Test\TestCase\Controller; | 
| 14 | 14 | |
| 15 | 15 | use Api\Error\Exception\GenericApiException; | 
| 16 | -use Cake\Cache\Cache; | |
| 17 | 16 | use Cake\Core\Configure; | 
| 18 | 17 | use Cake\Core\Plugin; | 
| 19 | 18 | use Cake\Filesystem\File; | 
| 20 | 19 | use Cake\Http\Exception\UnauthorizedException; | 
| 21 | 20 | use Cake\ORM\TableRegistry; | 
| 22 | -use claviska\SimpleImage; | |
| 23 | 21 | use Saito\Exception\SaitoForbiddenException; | 
| 24 | 22 | use Saito\Test\IntegrationTestCase; | 
| 25 | 23 | |
| @@ -1,6 +1,6 @@ discard block | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types = 1); | |
| 3 | +declare(strict_types=1); | |
| 4 | 4 | |
| 5 | 5 | /** | 
| 6 | 6 | * Saito - The Threaded Web Forum | 
| @@ -72,7 +72,7 @@ discard block | ||
| 72 | 72 | $this->loginJwt(1); | 
| 73 | 73 | |
| 74 | 74 | $this->upload($this->file); | 
| 75 | - $response = json_decode((string)$this->_response->getBody(), true); | |
| 75 | + $response = json_decode((string) $this->_response->getBody(), true); | |
| 76 | 76 | |
| 77 | 77 | $this->assertResponseCode(200); | 
| 78 | 78 | |
| @@ -119,7 +119,7 @@ discard block | ||
| 119 | 119 | <svg width="9" height="9" style="background:red;"></svg>'); | 
| 120 | 120 | $this->upload($this->file); | 
| 121 | 121 | |
| 122 | - $response = json_decode((string)$this->_response->getBody(), true); | |
| 122 | + $response = json_decode((string) $this->_response->getBody(), true); | |
| 123 | 123 | |
| 124 | 124 | $this->assertResponseCode(200); | 
| 125 | 125 | |
| @@ -176,7 +176,7 @@ discard block | ||
| 176 | 176 | |
| 177 | 177 | $this->upload($this->file); | 
| 178 | 178 | |
| 179 | - $response = json_decode((string)$this->_response->getBody(), true); | |
| 179 | + $response = json_decode((string) $this->_response->getBody(), true); | |
| 180 | 180 | |
| 181 | 181 | $this->assertResponseCode(200); | 
| 182 | 182 | |
| @@ -236,7 +236,7 @@ discard block | ||
| 236 | 236 | |
| 237 | 237 |          $this->get('api/v2/uploads'); | 
| 238 | 238 | |
| 239 | - $response = json_decode((string)$this->_response->getBody(), true); | |
| 239 | + $response = json_decode((string) $this->_response->getBody(), true); | |
| 240 | 240 | |
| 241 | 241 | $this->assertResponseCode(200); | 
| 242 | 242 | |
| @@ -283,7 +283,7 @@ discard block | ||
| 283 | 283 | |
| 284 | 284 |          $this->delete('api/v2/uploads/1'); | 
| 285 | 285 | |
| 286 | - $response = json_decode((string)$this->_response->getBody(), true); | |
| 286 | + $response = json_decode((string) $this->_response->getBody(), true); | |
| 287 | 287 | |
| 288 | 288 | $this->assertResponseCode(204); | 
| 289 | 289 | |
| @@ -12,7 +12,6 @@ | ||
| 12 | 12 | |
| 13 | 13 | namespace Installer\Test\TestCase\Controller; | 
| 14 | 14 | |
| 15 | -use App\Model\Table\SettingsTable; | |
| 16 | 15 | use Cake\Core\Configure; | 
| 17 | 16 | use Cake\Datasource\ConnectionManager; | 
| 18 | 17 | use Cake\Filesystem\File; | 
| @@ -1,6 +1,6 @@ discard block | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | -declare(strict_types = 1); | |
| 3 | +declare(strict_types=1); | |
| 4 | 4 | |
| 5 | 5 | /** | 
| 6 | 6 | * Saito - The Threaded Web Forum | 
| @@ -54,7 +54,7 @@ discard block | ||
| 54 | 54 | |
| 55 | 55 | $this->assertResponseOk(); | 
| 56 | 56 |          $this->assertEquals('failure', $this->_controller->viewBuilder()->getTemplate()); | 
| 57 | - $this->assertResponseContains((string)1529737182); | |
| 57 | + $this->assertResponseContains((string) 1529737182); | |
| 58 | 58 | } | 
| 59 | 59 | |
| 60 | 60 | public function testUpdaterShowFailureNoDbVersionString() | 
| @@ -64,7 +64,7 @@ discard block | ||
| 64 | 64 | |
| 65 | 65 | $this->assertResponseOk(); | 
| 66 | 66 |          $this->assertEquals('failure', $this->_controller->viewBuilder()->getTemplate()); | 
| 67 | - $this->assertResponseContains((string)1529737397); | |
| 67 | + $this->assertResponseContains((string) 1529737397); | |
| 68 | 68 | } | 
| 69 | 69 | |
| 70 | 70 | public function testUpdaterShowFailureWrongDbVersionString() | 
| @@ -74,7 +74,7 @@ discard block | ||
| 74 | 74 | |
| 75 | 75 | $this->assertResponseOk(); | 
| 76 | 76 |          $this->assertEquals('failure', $this->_controller->viewBuilder()->getTemplate()); | 
| 77 | - $this->assertResponseContains((string)1529737648); | |
| 77 | + $this->assertResponseContains((string) 1529737648); | |
| 78 | 78 | } | 
| 79 | 79 | |
| 80 | 80 | public function testUpdaterInitMigrationsFormEmpty() | 
| @@ -10,7 +10,6 @@ | ||
| 10 | 10 | namespace App\Auth; | 
| 11 | 11 | |
| 12 | 12 | use Cake\Auth\BaseAuthenticate; | 
| 13 | -use Cake\Core\Configure; | |
| 14 | 13 | use Cake\Event\Event; | 
| 15 | 14 | use Cake\Http\Response; | 
| 16 | 15 | use Cake\Http\ServerRequest; | 
| @@ -16,7 +16,6 @@ discard block | ||
| 16 | 16 | use Cake\Core\Configure; | 
| 17 | 17 | use Cake\Event\Event; | 
| 18 | 18 | use Cake\ORM\TableRegistry; | 
| 19 | -use Cake\Routing\Router; | |
| 20 | 19 | use Cake\Utility\Security; | 
| 21 | 20 | use Firebase\JWT\JWT; | 
| 22 | 21 | use Saito\App\Registry; | 
| @@ -26,7 +25,6 @@ discard block | ||
| 26 | 25 | use Saito\User\CurrentUser\CurrentUserInterface; | 
| 27 | 26 | use Saito\User\CurrentUser\CurrentUserTrait; | 
| 28 | 27 | use Saito\User\LastRefresh; | 
| 29 | -use Saito\User\ReadPostings; | |
| 30 | 28 | use Saito\User\ReadPostings\ReadPostingsCookie; | 
| 31 | 29 | use Saito\User\ReadPostings\ReadPostingsDatabase; | 
| 32 | 30 | use Saito\User\ReadPostings\ReadPostingsDummy; | 
| @@ -180,7 +180,7 @@ | ||
| 180 | 180 | } | 
| 181 | 181 | |
| 182 | 182 | //= set persistent Cookie | 
| 183 | -        $setCookie = (bool)$this->request->getData('remember_me'); | |
| 183 | +        $setCookie = (bool) $this->request->getData('remember_me'); | |
| 184 | 184 |          if ($setCookie) { | 
| 185 | 185 | (new CurrentUserCookie($this->getController()))->write($this->getId()); | 
| 186 | 186 | }; | 
| @@ -3,7 +3,6 @@ | ||
| 3 | 3 | namespace App\Controller\Component; | 
| 4 | 4 | |
| 5 | 5 | use Cake\Controller\Component; | 
| 6 | -use Cake\Core\Configure; | |
| 7 | 6 | use Saito\User\ForumsUserInterface; | 
| 8 | 7 | |
| 9 | 8 | class SlidetabsComponent extends Component | 
| @@ -15,7 +15,6 @@ | ||
| 15 | 15 | use Cake\Core\Configure; | 
| 16 | 16 | use Cake\ORM\Entity; | 
| 17 | 17 | use Cake\ORM\TableRegistry; | 
| 18 | -use Cake\Utility\Hash; | |
| 19 | 18 | use Saito\App\Registry; | 
| 20 | 19 | use Saito\Posting\Posting; | 
| 21 | 20 | use Stopwatch\Lib\Stopwatch; |