PHP Classes

File: bin/cake.php

Recommend this page to a friend!
  Packages of Andraž   BB   bin/cake.php   Download  
File: bin/cake.php
Role: Example script
Content type: text/plain
Description: Example script
Class: BB
Badminton tournament management application
Author: By
Last change:
Date: 15 days ago
Size: 307 bytes
 

Contents

Class file image Download
#!/usr/bin/php -q
<?php
require dirname(__DIR__) . '/vendor/autoload.php';

use
App\Application;
use
Cake\Console\CommandRunner;

// Build the runner with an application and root executable name.
$runner = new CommandRunner(new Application(dirname(__DIR__) . '/config'), 'cake');
exit(
$runner->run($argv));