コード例 #1
0
 /**
  * Constructor
  *
  * @param string $level
  */
 public function __construct($level = self::NONE)
 {
     parent::__construct();
     $this->level = $level;
     if ($level === self::DEBUG) {
         $this->bindListener();
     }
 }
コード例 #2
0
 public function __construct()
 {
     $this->fd = uniqid();
     parent::__construct();
 }
コード例 #3
0
 /**
  * Constructor
  *
  * @param string $key
  */
 public function __construct($key)
 {
     parent::__construct();
     $this->transformer = new VigenereCipherTransformer($key);
 }
コード例 #4
0
 public function __construct($prefix)
 {
     parent::__construct();
     $this->prefix = $prefix;
 }