Completed
Pull Request — master (#20)
by Anatoliy
27:24 queued 17:25
created

AceessDenied   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getSample() 0 3 1
1
<?php
2
declare(strict_types=1);
3
/**
4
 * Created by PhpStorm.
5
 * User: danchukas
6
 * Date: 2017-07-18 08:46
7
 */
8
9
namespace DanchukAS\Mock\Type;
10
11
/**
12
 * Class NullTypeMock
13
 * @package DanchukAS\Mock\Type
14
 */
15
class AceessDenied
16
{
17
    /**
18
     * @return null
19
     */
20
    public static function getSample()
21
    {
22
        yield ["the only one" => null];
23
    }
24
}