CloudStorageSetup::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
namespace STS\StorageConnect\Events;
3
4
use STS\StorageConnect\Models\CloudStorage;
5
6
class CloudStorageSetup
7
{
8
    /**
9
     * @var CloudStorage
10
     */
11
    public $storage;
12
13
    /**
14
     * StorageConnected constructor.
15
     *
16
     * @param CloudStorage $storage
17
     */
18
    public function __construct(CloudStorage $storage)
19
    {
20
        $this->storage = $storage;
21
    }
22
}