GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 9397f8...f90ad4 )
by Adrien
11s
created

DeclarativeSyntax   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

7 Methods

Rating   Name   Duplication   Size   Complexity  
A convertToGrid() 0 4 1
A convertToMatrix() 0 4 1
A convertToSyntax() 0 4 1
A convertToSyntaxWithPath() 0 4 1
A findAndCreateNode() 0 4 1
A findAndCreateNodes() 0 4 1
A generateNodePath() 0 4 1
1
<?php
2
3
namespace Letournel\PathFinder\Converters\Grid;
4
5
use Letournel\PathFinder\Core\NodeGrid;
6
use Letournel\PathFinder\ConverterGrid;
7
8
class DeclarativeSyntax implements ConverterGrid
9
{
10
    public function convertToGrid($syntax)
11
    {
12
        throw new \RuntimeException('Not implemented');
13
    }
14
	
15
    public function convertToMatrix($syntax)
16
    {
17
        throw new \RuntimeException('Not implemented');
18
    }
19
    
20
    public function convertToSyntax(NodeGrid $map)
21
    {
22
        throw new \RuntimeException('Not implemented');
23
    }
24
    
25
    public function convertToSyntaxWithPath(NodeGrid $grid, NodePath $path)
26
    {
27
        throw new \RuntimeException('Not implemented');
28
    }
29
    
30
    public function findAndCreateNode($syntax, $charToFind)
31
    {
32
        throw new \RuntimeException('Not implemented');
33
    }
34
    
35
    public function findAndCreateNodes($syntax, $charToFind)
36
    {
37
        throw new \RuntimeException('Not implemented');
38
    }
39
    
40
    public function generateNodePath($matrix)
41
    {
42
        throw new \RuntimeException('Not implemented');
43
    }
44
}
45