for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by gerk on 28.07.16 17:36
*/
namespace PeekAndPoke\Component\Slumber\Data\Migration;
* @author Karsten J. Gerber <[email protected]>
abstract class AbstractMigration implements Migration
{
* @return string
public function getName()
$reflect = new \ReflectionClass($this);
return $reflect->getShortName();
}