PHP Classes

File: app/commands/MigrationsCLI.php

Recommend this page to a friend!
  Classes of Brett Dutton   JackBooted PHP Framework   app/commands/MigrationsCLI.php   Download  
File: app/commands/MigrationsCLI.php
Role: Class source
Content type: text/plain
Description: Class source
Class: JackBooted PHP Framework
Web application framework using simplified MVC
Author: By
Last change:
Date: 8 years ago
Size: 415 bytes
 

Contents

Class file image Download
<?php
namespace App\Commands;

class
MigrationsCLI extends \Jackbooted\Html\WebPage
{
    public static function
init () {
       
self::$log = \Jackbooted\Util\Log4PHP::logFactory ( __CLASS__ );
    }

// This is the template of a migration
// Reflection picks up all the methods that start with migrate
// public static function migrate2015_10_03_00_00()
// {
// echo __METHOD__;
// }
}