Issues (1124)

src/RegistryBuilder.php (6 issues)

1
<?php declare(strict_types=1);
0 ignored issues
show
This file is missing a doc comment.
Loading history...
The PHP open tag does not have a corresponding PHP close tag
Loading history...
Filename "RegistryBuilder.php" doesn't match the expected filename "registrybuilder.php"
Loading history...
2
3
namespace Star\Component\State;
4
5
interface RegistryBuilder
6
{
7
    /**
8
     * @param string $transition
9
     * @param string $stateName
10
     * @param string[] $attributes
11
     */
12
    public function registerStartingState(string $transition, string $stateName, array $attributes): void;
0 ignored issues
show
Expected 2 blank lines before function; 0 found
Loading history...
Expected 2 blank lines after function; 1 found
Loading history...
13
14
    /**
15
     * @param string $transition
16
     * @param string $stateName
17
     * @param string[] $attributes
18
     */
19
    public function registerDestinationState(string $transition, string $stateName, array $attributes): void;
0 ignored issues
show
Expected 2 blank lines after function; 0 found
Loading history...
20
}
21