Pokedex::setPokemonAttribute()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
namespace Atog\PHPokemon\Models;
3
4
use Atog\Api\Model;
5
6
/**
7
 * Class Pokedex
8
 * @package Atog\PHPokemon\Models
9
 */
10
class Pokedex extends Model
11
{
12
    /**
13
     * Save pokemon as collection
14
     * @param $pkmn
15
     */
16 4
    public function setPokemonAttribute($pkmn)
17
    {
18 4
        $this->attributes['pokemon'] = $this->makeCollection($pkmn);
19 4
    }
20
}
21