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::convertToSyntaxWithPath()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
dl 0
loc 4
rs 10
c 1
b 1
f 0
cc 1
eloc 2
nc 1
nop 2
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