コード例 #1
0
ファイル: Call.php プロジェクト: Nycto/Round-Eights
 /**
  * Constructor...
  *
  * @param String $file The file the event occurred within
  * @param Integer $line The line the call was made on
  * @param Array $args The arguments passed in to this call
  */
 public function __construct($file = null, $line = null, array $args = array())
 {
     parent::__construct($file, $line);
     $this->args = $args;
 }