XmlSerializer   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
/**
4
 * Author: Nil Portugués Calderó <[email protected]>
5
 * Date: 8/29/15
6
 * Time: 12:47 PM.
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
namespace NilPortugues\Serializer;
12
13
use NilPortugues\Serializer\Strategy\XmlStrategy;
14
15
class XmlSerializer extends Serializer
16
{
17
    /**
18
     *
19
     */
20
    public function __construct()
21
    {
22
        parent::__construct(new XmlStrategy());
23
    }
24
}
25