コード例 #1
0
ファイル: Block.php プロジェクト: jasonmccreary/pspec
 public function __construct(InvocationContext $invocationContext, $fn = null, $name = null)
 {
     $this->invocationContext = $invocationContext;
     $this->parent = $invocationContext->activeBlock();
     $this->fn = $fn;
     $this->name = $name;
 }
コード例 #2
0
ファイル: Describe.php プロジェクト: jasonmccreary/pspec
 public function __construct($name, \Closure $closure)
 {
     parent::__construct(InvocationContext::getActive(), $closure, $name);
 }
コード例 #3
0
ファイル: Example.php プロジェクト: jasonmccreary/pspec
 public function __construct($name, \Closure $closure)
 {
     $invocationContext = InvocationContext::getAndAssertActiveBlock(\PSpec\Blocks\Describe::class);
     parent::__construct($invocationContext, $closure, $name);
 }