HandlesContentfulSync::getContentfulSyncService()   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 0
1
<?php
2
3
namespace Digia\Lumen\ContentfulSync\Traits;
4
5
use Digia\Lumen\ContentfulSync\Contracts\ContentfulSyncServiceContract;
6
7
/**
8
 * Trait SynchronizesContentfulEntities
9
 * @package Digia\Lumen\ContentfulSync\Traits
10
 */
11
trait HandlesContentfulSync
12
{
13
14
    /**
15
     * @return ContentfulSyncServiceContract
16
     */
17
    public function getContentfulSyncService(): ContentfulSyncServiceContract
18
    {
19
        return app(ContentfulSyncServiceContract::class);
20
    }
21
}
22