Passed
Push — master ( fcb1a7...854f93 )
by DeGracia
02:30
created

AccentedLetter::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
3
namespace DeGraciaMathieu\Riddler\Criterias;
4
    
5
use DeGraciaMathieu\Riddler\Contracts\Criteria;
6
7
class AccentedLetter  implements Criteria
0 ignored issues
show
Coding Style introduced by
Expected 1 space after class name; 2 found
Loading history...
Coding Style introduced by
Expected 1 space before implements keyword; 2 found
Loading history...
8
{
9 3
    public function handle()
10
    {
11 3
        return ['à','á','â','ã','ä','å','è','é','ê','ë','ì','í','î','ï','ñ','ò','ó','ô','õ','ö','ù','ú','û','ü','ý'];
12
    }
13
}
14