コード例 #1
0
ファイル: Invoice.php プロジェクト: roronya/Bgm555
 /** Constructor **/
 public function __construct()
 {
     parent::__construct();
     $this->state = new WaitingState();
     $this->stateName = $this->state;
     $this->shortId = $this->generateShortId();
 }
コード例 #2
0
ファイル: Receipt.php プロジェクト: roronya/Bgm555
 /** Constructor **/
 public function __construct()
 {
     parent::__construct();
     $this->issueCount = 0;
 }