ZohoMail::getConnection()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Integrations\Connectors\ZohoMail;
4
5
use Log;
6
// use Stalker\Models\Video;
7
use App\Models\User;
8
use Integrations\Connectors\Connector;
9
10
class ZohoMail extends Connector
11
{
12
    /**
13
     * Proxima é 33, por causa do camera prive e amazon, BitBucket, GitHub, Trello
14
     * e Coursera
15
     */
16
    public static $ID = 26;
17
    public static $URL = 'https://www.zohomail.com/';
18
19
    public function getConnection($organizer = false)
20
    {
21
        return false;
22
    }
23
}
24