Updated changelog with version 1.10.1

This commit is contained in:
Alejandro Celaya
2018-08-01 20:58:48 +02:00
parent 3883ed15c4
commit 8063e643a3
2 changed files with 34 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
<?php declare(strict_types=1);
<?php
declare(strict_types=1);
namespace ShlinkMigrations;
@@ -18,7 +19,7 @@ final class Version20180801183328 extends AbstractMigration
* @param Schema $schema
* @throws SchemaException
*/
public function up(Schema $schema) : void
public function up(Schema $schema): void
{
$this->setSize($schema, self::NEW_SIZE);
}
@@ -27,7 +28,7 @@ final class Version20180801183328 extends AbstractMigration
* @param Schema $schema
* @throws SchemaException
*/
public function down(Schema $schema) : void
public function down(Schema $schema): void
{
$this->setSize($schema, self::OLD_SIZE);
}