Completed
Push — 0.3.x ( 4f6fde...8ea901 )
by Marko
02:33
created

DefaultMethods::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 6
Ratio 100 %

Code Coverage

Tests 5
CRAP Score 1

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 6
loc 6
ccs 5
cts 5
cp 1
rs 9.4285
cc 1
eloc 4
nc 1
nop 1
crap 1
1
<?php
2
/** @formatter:off
3
 * ******************************************************************
4
 * Created by   Marko Kungla on Jun 27, 2016 - 2:54:40 AM
5
 * Contact      [email protected]
6
 * @copyright   2016 Marko Kungla - https://github.com/mkungla
7
 * @license     The MIT License (MIT)
8
 * 
9
 * @category       AframeVR
10
 * @package        aframe-php
11
 * 
12
 * Lang         PHP (php version >= 7)
13
 * Encoding     UTF-8
14
 * File         DefaultMethods.php
15
 * Code format  PSR-2 and 12
16
 * @link        https://github.com/mkungla/aframe-php
17
 ^ @issues      https://github.com/mkungla/aframe-php/issues
18
 * ********************************************************************
19
 * Contributors:
20
 * @author Marko Kungla <[email protected]>
21
 * ********************************************************************
22
 * Comments:
23
 * @formatter:on */
24
namespace AframeVR\Core\Components\Scale\Methods;
25
26 View Code Duplication
class DefaultMethods
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
27
{
28
    /**
29
     * When any scale component methods are called then init others
30
     * 
31
     * @param array $dom_attributes
32
     * @return void
33
     */
34 10
    private function init(array &$dom_attributes)
35
    {
36 10
        $dom_attributes['x'] = $dom_attributes['x'] ?? 0;
37 10
        $dom_attributes['y'] = $dom_attributes['y'] ?? 0;
38 10
        $dom_attributes['z'] = $dom_attributes['z'] ?? 0;
39 10
    }
40
41
    /**
42
     * Scaling factor in the X direction.
43
     *
44
     * @param array $dom_attributes            
45
     * @param double $scale_x            
46
     * @return void
47
     */
48 10
    public function scaleX(array &$dom_attributes, float $scale_x)
49
    {
50 10
        $this->init($dom_attributes);
51 10
        $dom_attributes['x'] = $scale_x;
52 10
    }
53
54
    /**
55
     * Scaling factor in the Y direction..
56
     *
57
     * @param array $dom_attributes            
58
     * @param double $scale_y            
59
     * @return void
60
     */
61 9
    public function scaleY(array &$dom_attributes, float $scale_y)
62
    {
63 9
        $this->init($dom_attributes);
64 9
        $dom_attributes['y'] = $scale_y;
65 9
    }
66
67
    /**
68
     * Scaling factor in the Z direction.
69
     *
70
     * @param array $dom_attributes            
71
     * @param double $scale_z            
72
     * @return void
73
     */
74 9
    public function scaleZ(array &$dom_attributes, float $scale_z)
75
    {
76 9
        $this->init($dom_attributes);
77 9
        $dom_attributes['z'] = $scale_z;
78 9
    }
79
}
80