Sequenzia/install/ApplicationInstaller/Action/Base.php
2013-10-27 15:05:51 -05:00

18 lines
331 B
PHP
Executable File

<?php
namespace ApplicationInstaller\Action;
abstract class Base
{
abstract public function commit();
protected function renameIndex()
{
rename(\Rails::publicPath() . '/index', \Rails::publicPath() . '/index.php');
}
protected function root()
{
return __DIR__ . '/../..';
}
}