当前位置: 首页>>代码示例>>PHP>>正文


PHP Notifier::__construct方法代码示例

本文整理汇总了PHP中Notifier::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Notifier::__construct方法的具体用法?PHP Notifier::__construct怎么用?PHP Notifier::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Notifier的用法示例。


在下文中一共展示了Notifier::__construct方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($url, $token, $room, $prefix = null, $spamTimeout = 60, $icons = [])
 {
     parent::__construct($spamTimeout);
     self::$url = $url;
     self::$token = $token;
     self::$room = $room;
     self::$prefix = $prefix;
     self::$icons = $icons + ['sad' => ':thumbsdown:', 'smile' => ':thumbsup::sparkles:', 'error' => ':thumbsdown::shit:'];
 }
开发者ID:behatch,项目名称:notifiers,代码行数:9,代码来源:Campfire.php

示例2: __construct

 public function __construct($url, $settings = [], $prefix = null, $attachment = [], $spamTimeout = 60)
 {
     if (!class_exists('\\Maknz\\Slack\\Client')) {
         $message = 'Class \\Maknz\\Slack\\Client does not exist. Are you sure you have installed it? i.e. composer require "maknz/slack"';
         throw new \Exception($message);
     }
     parent::__construct($spamTimeout);
     self::$url = $url;
     self::$prefix = $prefix;
     self::$settings = $settings + ['username' => 'Behat', 'channel' => '#general', 'link_names' => true, 'icon' => ':fire:'];
     self::$attachment = $attachment + ['fallback' => 'Behat test failed', 'text' => '', 'pretext' => '', 'color' => 'danger', 'fields' => array()];
 }
开发者ID:behatch,项目名称:notifiers,代码行数:12,代码来源:Slack.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     $this->subCommands = array();
     $this->initializeMacroCommand();
 }
开发者ID:skyview059,项目名称:puremvc-php-demo-gtk-employeeadmin,代码行数:6,代码来源:PureMVC_PHP_1_0_2.php

示例4: __construct

 /**
  * Constructor.
  *
  * Your subclass MUST define a constructor, be
  * sure to call <b>parent::__construct();</b> to
  * have PHP instanciate the whole parent/child chain.
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
 }
开发者ID:xojunzheng,项目名称:puremvc-php-multicore-framework,代码行数:13,代码来源:SimpleCommand.php

示例5: __construct

 public function __construct($spamTimeout = 60, $icons = [])
 {
     parent::__construct($spamTimeout);
     $behatchDir = __DIR__ . '/Resources';
     self::$icons = $icons + ['sad' => "{$behatchDir}/images/gnome-sad.png", 'smile' => "{$behatchDir}/images/gnome-smile.png", 'error' => "{$behatchDir}/images/gnome-error.png"];
 }
开发者ID:behatch,项目名称:notifiers,代码行数:6,代码来源:Desktop.php


注:本文中的Notifier::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。