當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Unit::__construct方法代碼示例

本文整理匯總了PHP中Unit::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Unit::__construct方法的具體用法?PHP Unit::__construct怎麽用?PHP Unit::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Unit的用法示例。


在下文中一共展示了Unit::__construct方法的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct($result = null, Error $error = null, $id = null)
 {
     if ($result === null && $error === null) {
         throw new \LogicException('Result or error must be defined.');
     }
     parent::__construct($id);
     $this->result = $result;
     $this->error = $error;
 }
開發者ID:igaponov,項目名稱:jsonrpc,代碼行數:9,代碼來源:Response.php

示例2: array

 function __construct($props = array())
 {
     parent::__construct('tree', $props);
     if (!empty($this->props['node']['module_id_name']) && $this->props['node']['module_id_name'] != 'tree') {
         if (inc_u($this->props['node']['module_id_name'])) {
             $unitName = ucfirst($this->props['node']['module_id_name']) . 'Unit';
             $this->subunit = new $unitName($this->props);
             $this->subunit_service = true;
         } else {
             $this->subunit = new Unit($this->props['node']['module_id_name'], $this->props);
             $this->subunit_service = false;
         }
     }
 }
開發者ID:rawork,項目名稱:colors-life,代碼行數:14,代碼來源:TreeUnit.php

示例3: __construct

 public function __construct()
 {
     parent::__construct("Kilómetros cuadrados", "km2", "area");
 }
開發者ID:penguinjournals,項目名稱:comparatio,代碼行數:4,代碼來源:SquareKilometer.php

示例4: __construct

 /**
  * @inheritdoc
  */
 public function __construct($data)
 {
     parent::__construct($data);
     $this->mark = $data['mark'];
 }
開發者ID:astahovn,項目名稱:design-patterns,代碼行數:8,代碼來源:Product.php

示例5: array

 function __construct($aProperties = array())
 {
     parent::__construct('auth', $aProperties);
     $this->initializeUser();
 }
開發者ID:rawork,項目名稱:colors-life,代碼行數:5,代碼來源:AuthUnit.php

示例6: array

 function __construct($props = array())
 {
     parent::__construct('maillist', $props);
 }
開發者ID:rawork,項目名稱:colors-life,代碼行數:4,代碼來源:MaillistUnit.php

示例7: __construct

 /**
  * @inheritdoc
  */
 public function __construct($data)
 {
     parent::__construct($data);
     $this->specialistLevel = $data['specialistLevel'];
 }
開發者ID:astahovn,項目名稱:design-patterns,代碼行數:8,代碼來源:Service.php

示例8: __construct

 public function __construct($method, $params = null, $id = null)
 {
     parent::__construct($id);
     $this->method = $method;
     $this->params = $params;
 }
開發者ID:igaponov,項目名稱:jsonrpc,代碼行數:6,代碼來源:Request.php

示例9: __construct

 public function __construct($aProperties = array())
 {
     parent::__construct('cart', $aProperties);
     $this->smarty->assign('sess_name', session_name());
     $this->smarty->assign('sess_id', session_id());
 }
開發者ID:rawork,項目名稱:colors-life,代碼行數:6,代碼來源:CartUnit.php

示例10:

 function __construct($id, $phenomena, $name, $symbol = null)
 {
     //parent::Create($phenomena, $name, $symbol);
     parent::__construct($id, $phenomena, $name, $symbol);
     //Good or service/virtual product
 }
開發者ID:xander-mbaka,項目名稱:momentum,代碼行數:6,代碼來源:Accounting.php

示例11: array

 function __construct($name, $props = array())
 {
     parent::__construct($name, $props);
 }
開發者ID:rawork,項目名稱:colors-life,代碼行數:4,代碼來源:URIItemsUnit.php


注:本文中的Unit::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。