CreateUserService   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 29
ccs 0
cts 15
cp 0
rs 10
c 0
b 0
f 0
wmc 2
lcom 1
cbo 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 9 1
A run() 0 10 1
1
<?php
2
/*
3
 * This file is part of the Laravel Platfourm package.
4
 *
5
 * (c) Avtandil Kikabidze aka LONGMAN <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Longman\Platfourm\User\Services;
12
13
use Longman\Platfourm\Contracts\Auth\AuthUserService;
14
use Longman\Platfourm\Foundation\Repositories\Repository;
15
use Longman\Platfourm\Service\EntityService;
16
use Longman\Platfourm\User\Repositories\Eloquent\UserRepository;
17
18
class CreateUserService extends EntityService
19
{
20
21
    protected $repository;
22
23
    protected $authUserService;
24
25
    public function __construct(
26
        AuthUserService $authUserService,
27
        UserRepository $repository
28
    ) {
29
        $this->authUserService = $authUserService;
30
        $this->repository      = $repository;
31
32
        $authUserService->should('user.create');
33
    }
34
35
    public function run(array $data)
36
    {
37
        $this->checkRepository();
38
39
        $data['password'] = bcrypt($data['password']);
40
41
        $entity = $this->repository->create($data);
42
43
        return $entity;
44
    }
45
46
}
47