Pipe\Environment::appendPath PHP 메소드

appendPath() 공개 메소드

public appendPath ( $path )
    function appendPath($path)
    {
        $this->loadPaths->push($path);
        return $this;
    }

Usage Example

예제 #1
0
파일: ContextTest.php 프로젝트: chh/pipe
 function setup()
 {
     $env = new Environment();
     $env->appendPath(__DIR__ . '/fixtures');
     $this->ctx = new Context($env);
     $this->ctx->path = __DIR__ . '/fixtures';
 }
All Usage Examples Of Pipe\Environment::appendPath