PHP 클래스 Flugg\Responder\Console\MakeTransformer

저자: Alexander Tømmerås ([email protected])
상속: extends Illuminate\Console\Command
파일 보기 프로젝트 열기: flugger/laravel-responder

보호된 프로퍼티들

프로퍼티 타입 설명
$description string The console command description.
$files Illuminate\Filesystem\Filesystem The file system instance.
$signature string The name and signature of the console command.

공개 메소드들

메소드 설명
__construct ( Illuminate\Filesystem\Filesystem $files ) Create a new command instance.
handle ( ) : mixed Execute the console command.

보호된 메소드들

메소드 설명
generateTransformer ( ) : void Generate the transformer class.
getClassFromNamespace ( string $namespace ) : string Get the full class path for the transformer.
getModelNamespace ( string $name ) : string Get the full class path for the model.
makeDirectory ( string $path ) : void Build a transformers directory if one doesn't exist.
makeTransformer ( string $name, string $stub ) : string Build the transformer class using the given name and stub.
replaceClass ( string $stub, string $name ) : string Replace the class name for the given stub.
replaceModel ( string $stub, string $name ) : string Replace the model for the given stub.
replaceNamespace ( string $stub ) : string Replace the namespace for the given stub.

메소드 상세

__construct() 공개 메소드

Create a new command instance.
public __construct ( Illuminate\Filesystem\Filesystem $files )
$files Illuminate\Filesystem\Filesystem

generateTransformer() 보호된 메소드

Generate the transformer class.
protected generateTransformer ( ) : void
리턴 void

getClassFromNamespace() 보호된 메소드

Get the full class path for the transformer.
protected getClassFromNamespace ( string $namespace ) : string
$namespace string
리턴 string

getModelNamespace() 보호된 메소드

Get the full class path for the model.
protected getModelNamespace ( string $name ) : string
$name string
리턴 string

handle() 공개 메소드

Execute the console command.
public handle ( ) : mixed
리턴 mixed

makeDirectory() 보호된 메소드

Build a transformers directory if one doesn't exist.
protected makeDirectory ( string $path ) : void
$path string
리턴 void

makeTransformer() 보호된 메소드

Build the transformer class using the given name and stub.
protected makeTransformer ( string $name, string $stub ) : string
$name string
$stub string
리턴 string

replaceClass() 보호된 메소드

Replace the class name for the given stub.
protected replaceClass ( string $stub, string $name ) : string
$stub string
$name string
리턴 string

replaceModel() 보호된 메소드

Replace the model for the given stub.
protected replaceModel ( string $stub, string $name ) : string
$stub string
$name string
리턴 string

replaceNamespace() 보호된 메소드

Replace the namespace for the given stub.
protected replaceNamespace ( string $stub ) : string
$stub string
리턴 string

프로퍼티 상세

$description 보호되어 있는 프로퍼티

The console command description.
protected string $description
리턴 string

$files 보호되어 있는 프로퍼티

The file system instance.
protected Filesystem,Illuminate\Filesystem $files
리턴 Illuminate\Filesystem\Filesystem

$signature 보호되어 있는 프로퍼티

The name and signature of the console command.
protected string $signature
리턴 string