Completed
Push — master ( 978567...468b8f )
by Pascal
16:13
created

Types   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 47
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 5
c 1
b 0
f 1
lcom 1
cbo 1
dl 0
loc 47
rs 10

5 Methods

Rating   Name   Duplication   Size   Complexity  
A setIneffectiveAttribute() 0 4 1
A setNoEffectAttribute() 0 4 1
A setResistanceAttribute() 0 4 1
A setSuperEffectiveAttribute() 0 4 1
A setWeaknessAttribute() 0 4 1
1
<?php
2
namespace Atog\PHPokemon\Models;
3
4
use Atog\Api\Model;
5
6
/**
7
 * Class Types
8
 * @package Atog\PHPokemon\Models
9
 */
10
class Types extends Model
11
{
12
    /**
13
     * Save ineffective as collection
14
     * @param $value
15
     */
16
    public function setIneffectiveAttribute($value)
17
    {
18
        $this->attributes['ineffective'] = $this->makeCollection($value);
19
    }
20
21
    /**
22
     * Save no_effect as collection
23
     * @param $value
24
     */
25
    public function setNoEffectAttribute($value)
26
    {
27
        $this->attributes['no_effect'] = $this->makeCollection($value);
28
    }
29
30
    /**
31
     * Save resistance as collection
32
     * @param $value
33
     */
34
    public function setResistanceAttribute($value)
35
    {
36
        $this->attributes['resistance'] = $this->makeCollection($value);
37
    }
38
39
    /**
40
     * Save super_effective as collection
41
     * @param $value
42
     */
43
    public function setSuperEffectiveAttribute($value)
44
    {
45
        $this->attributes['super_effective'] = $this->makeCollection($value);
46
    }
47
48
    /**
49
     * Save weakness as collection
50
     * @param $value
51
     */
52
    public function setWeaknessAttribute($value)
53
    {
54
        $this->attributes['weakness'] = $this->makeCollection($value);
55
    }
56
}
57