Skip to content
Snippets Groups Projects
Unverified Commit fc174f95 authored by Thomas Flori's avatar Thomas Flori
Browse files

fix code style

parent 72014c89
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ abstract class AbstractMigration
*/
abstract public function down(): void;
public function __call($method , $args)
public function __call($method, $args)
{
return call_user_func_array([$this->adapter, $method], $args);
}
......
......@@ -26,4 +26,3 @@ class CreateMigrationTable extends AbstractMigration
$this->exec('DROP TABLE migrations');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment