Completed
Pull Request — master (#304)
by Benoît
03:33
created

JsonApiAuthorTransformer::transform()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 1
1
<?php namespace League\Fractal\Test\Stub\Transformer;
2
3
use League\Fractal\TransformerAbstract;
4
5
class JsonApiAuthorTransformer extends TransformerAbstract
6
{
7
    protected $availableIncludes = [
8
        'published',
9
    ];
10
11
    public function transform(array $author)
12
    {
13
        unset($author['_published']);
14
15
        return $author;
16
    }
17
18
    public function includePublished(array $author)
19
    {
20
        if (! isset($author['_published'])) {
21
            return;
22
        }
23
24
        return $this->collection(
25
            $author['_published'],
26
            new JsonApiBookTransformer(),
27
            'books'
28
        );
29
    }
30
}
31