コード例 #1
0
ファイル: FunctionsTest.php プロジェクト: puzzlehttp/puzzle
 function __call($name, $arguments)
 {
     return puzzle_deprecation_proxy($this, $name, $arguments, array('baz' => 'foo'));
 }
コード例 #2
0
ファイル: Client.php プロジェクト: puzzlehttp/puzzle
 public function __call($name, $arguments)
 {
     return puzzle_deprecation_proxy($this, $name, $arguments, array('getEventDispatcher' => 'getEmitter'));
 }
コード例 #3
0
ファイル: Emitter.php プロジェクト: puzzlehttp/puzzle
 public function __call($name, $arguments)
 {
     return puzzle_deprecation_proxy($this, $name, $arguments, array('addSubscriber' => 'attach', 'removeSubscriber' => 'detach', 'addListener' => 'on', 'dispatch' => 'emit'));
 }