| 1 | <?php |
||
| 26 | class Factory implements Builder |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * Builds a new minifine instance |
||
| 30 | * |
||
| 31 | * @param string $basePath The base path to the resources (under most common cases this will be the public web |
||
| 32 | * root directory) |
||
| 33 | * @param bool $production The current environment |
||
| 34 | * |
||
| 35 | * @return \Minifine\Minifine |
||
| 36 | */ |
||
| 37 | 2 | public function build($basePath, $production = false) |
|
| 46 | } |
||
| 47 |