Steverobbins_Slack_Model_Api_Team::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * Slack.com Integration
4
 *
5
 * PHP Version 5
6
 *
7
 * @category  Steverobbins
8
 * @package   Steverobbins_Slack
9
 * @author    Steve Robbins <[email protected]>
10
 * @copyright Copyright 2015 Steve Robbins (http://steverobbins.com)
11
 * @license   http://creativecommons.org/licenses/by/3.0/deed.en_US Creative Commons Attribution 3.0 Unported License
12
 */
13
14
/**
15
 * Team API method
16
 */
17
class Steverobbins_Slack_Model_Api_Team extends Steverobbins_Slack_Model_Api_Abstract
18
{
19
    /**
20
     * Set method data
21
     */
22
    public function __construct()
23
    {
24
        $this->setMethod('team');
25
    }
26
}
27