mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-29 19:13:49 +00:00
location: fix code style with phpstan
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Chill is a software for social workers
|
||||
*
|
||||
* For the full copyright and license information, please view
|
||||
* the LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Chill\Migrations\Main;
|
||||
@@ -8,10 +15,16 @@ use Doctrine\DBAL\Schema\Schema;
|
||||
use Doctrine\Migrations\AbstractMigration;
|
||||
|
||||
/**
|
||||
* Add defaultFor to LocationType
|
||||
* Add defaultFor to LocationType.
|
||||
*/
|
||||
final class Version20211123093355 extends AbstractMigration
|
||||
{
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
$this->addSql('DROP INDEX UNIQ_A459B5CADD3E4105');
|
||||
$this->addSql('ALTER TABLE chill_main_location_type DROP defaultFor');
|
||||
}
|
||||
|
||||
public function getDescription(): string
|
||||
{
|
||||
return 'Add defaultFor to LocationType';
|
||||
@@ -22,10 +35,4 @@ final class Version20211123093355 extends AbstractMigration
|
||||
$this->addSql('ALTER TABLE chill_main_location_type ADD defaultFor VARCHAR(32) DEFAULT NULL');
|
||||
$this->addSql('CREATE UNIQUE INDEX UNIQ_A459B5CADD3E4105 ON chill_main_location_type (defaultFor)');
|
||||
}
|
||||
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
$this->addSql('DROP INDEX UNIQ_A459B5CADD3E4105');
|
||||
$this->addSql('ALTER TABLE chill_main_location_type DROP defaultFor');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user