| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Code Lines | 6 | 
| Lines | 11 | 
| Ratio | 100 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 46 | View Code Duplication | protected function getStub($name)  | 
            |
| 47 |     { | 
            ||
| 48 | $stub = file_get_contents(__DIR__.'/Stubs/command.stub');  | 
            ||
| 49 | |||
| 50 |         $stub = str_replace('CLASSNAME', $name, $stub); | 
            ||
| 51 | |||
| 52 | return $this->setNamespace(  | 
            ||
| 53 | $stub,  | 
            ||
| 54 |             NamespaceResolver::resolve('console', 'Commands') | 
            ||
| 55 | );  | 
            ||
| 56 | }  | 
            ||
| 57 | }  | 
            ||
| 58 |