Import::handle()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Integrations\Connectors\Sentry;
4
5
use Log;
6
7
8
class Import extends Sentry
9
{
10
    public function handle()
11
    {
12
        var_dump($this->getProjects());
0 ignored issues
show
Security Debugging Code introduced by
var_dump($this->getProjects()); looks like debug code. Are you sure you do not want to remove it? This might expose sensitive data.
Loading history...
13
        return true;
14
    }
15
16
}
17