1ea3b987
Administrator
maby first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
namespace Phalcon\DI\FactoryDefault {
/**
* Phalcon\DI\FactoryDefault\CLI
*
* This is a variant of the standard Phalcon\DI. By default it automatically
* registers all the services provided by the framework.
* Thanks to this, the developer does not need to register each service individually.
* This class is specially suitable for CLI applications
*/
class CLI extends \Phalcon\DI\FactoryDefault implements \Phalcon\DiInterface {
/**
* \Phalcon\DI\FactoryDefault\CLI constructor
*/
public function __construct(){ }
}
}
|