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
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
namespace Phalcon\Mvc\Micro {
/**
* Phalcon\Mvc\Micro\LazyLoader
*
* Lazy-Load of handlers for Mvc\Micro using auto-loading
*/
class LazyLoader {
protected $_handler;
protected $_definition;
/**
* \Phalcon\Mvc\Micro\LazyLoader constructor
*
* @param string $definition
*/
public function __construct($definition){ }
/**
* Initializes the internal handler, calling functions on it
*
* @param string $method
* @param array $arguments
* @return mixed
*/
public function __call($method, $arguments){ }
}
}
|