for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Framy Framework
*
* @copyright Copyright Framy
* @Author Marco Bier <[email protected]>
*/
namespace app\framework\Component\Database\Migrations;
abstract class Migration
{
* Run the migrations.
* @return void
public function up()
{}
* Reverse the migrations.
public function down()
}