ZohoMail   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getConnection() 0 4 1
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