本文整理匯總了PHP中CLI::bash方法的典型用法代碼示例。如果您正苦於以下問題:PHP CLI::bash方法的具體用法?PHP CLI::bash怎麽用?PHP CLI::bash使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CLI
的用法示例。
在下文中一共展示了CLI::bash方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testAppRoute
public function testAppRoute()
{
CLI::bash(['php brood app:module test_module']);
$has_file = file_exists($file = config()->path->app . 'TestModule/Routes.php');
$this->assertTrue($has_file, 'check if [' . $file . '] were generated');
$has_file = file_exists($file = config()->path->app . 'TestModule/Routes/RouteGroup.php');
$this->assertTrue($has_file, 'check if [' . $file . '] were generated');
$file_contents = file_get_contents($file);
$this->assertContains('namespace App\\TestModule\\Routes;', $file_contents);
$this->assertContains('use Phalcon\\Mvc\\Router\\Group as BaseRouteGroup;', $file_contents);
$this->assertContains('class RouteGroup extends BaseRouteGroup', $file_contents);
$has_file = file_exists($file = config()->path->app . 'TestModule/Providers/RouterServiceProvider.php');
$this->assertTrue($has_file, 'check if [' . $file . '] were generated');
$file_contents = file_get_contents($file);
$this->assertContains('namespace App\\TestModule\\Providers;', $file_contents);
$this->assertContains('use Phalcon\\Di\\FactoryDefault;', $file_contents);
$this->assertContains('use Clarity\\Providers\\ServiceProvider;', $file_contents);
$this->assertContains('use Clarity\\Contracts\\Providers\\ModuleInterface;', $file_contents);
$this->assertContains('class RouterServiceProvider extends ServiceProvider implements ModuleInterface', $file_contents);
$this->assertContains('public function module(FactoryDefault $di)', $file_contents);
$this->assertContains('->setDefaultNamespace(\'App\\TestModule\\Controllers\');', $file_contents);
$this->assertContains('public function afterModuleRun()', $file_contents);
$this->assertContains('require_once realpath(__DIR__.\'/../\').\'/Routes.php\';', $file_contents);
CLI::bash(['php brood app:route test test_module']);
$has_file = file_exists($file = config()->path->app . 'TestModule/Routes/TestRoutes.php');
$this->assertTrue($has_file, 'check if [' . $file . '] were generated');
$file_contents = file_get_contents($file);
$this->assertContains('namespace App\\TestModule\\Routes;', $file_contents);
$this->assertContains('class TestRoutes extends RouteGroup', $file_contents);
CLI::bash(['php brood app:controller test test_module']);
$has_file = file_exists($file = config()->path->app . 'TestModule/Controllers/TestController.php');
$this->assertTrue($has_file, 'check if [' . $file . '] were generated');
$file_contents = file_get_contents($file);
$this->assertContains('namespace App\\TestModule\\Controllers;', $file_contents);
$this->assertContains('class TestController extends Controller', $file_contents);
}
示例2: testOptimizeCommand
public function testOptimizeCommand()
{
CLI::bash(['php brood optimize --force']);
$has_file = file_exists(config()->path->storage . 'slayer/compiled.php');
$this->assertTrue($has_file, 'check if classes were generated and compiled');
}