diff --git a/composer.json b/composer.json index e71da3a..1eb794f 100644 --- a/composer.json +++ b/composer.json @@ -39,12 +39,11 @@ "laravel/framework": "^11.0" }, "require-dev": { - "umbrellio/code-style-php": "^2.0", + "umbrellio/code-style-php": "^1.2", "orchestra/testbench": "^9.0", "php-coveralls/php-coveralls": "^2.7", "codeception/codeception": "^5.0", - "phpunit/phpunit": "^11.0", - "squizlabs/php_codesniffer": "4.0.x-dev" + "phpunit/phpunit": "^11.0" }, "scripts": { "lint": [ diff --git a/src/Schema/Blueprint.php b/src/Schema/Blueprint.php index 712ae25..cfbb9cc 100644 --- a/src/Schema/Blueprint.php +++ b/src/Schema/Blueprint.php @@ -50,7 +50,6 @@ public function like(string $table): Fluent /** * @codeCoverageIgnore - * @return Fluent */ public function ifNotExists(): Fluent { @@ -183,6 +182,7 @@ public function daterange(string $column): Fluent */ protected function getSchemaManager() { + /** @scrutinizer ignore-call */ $connection = Schema::getConnection(); $doctrineConnection = DriverManager::getConnection($connection->getConfig()); return $doctrineConnection->getSchemaManager();