We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
8 | class IsAuthenticatedTest extends TestCase |
||
9 | { |
||
10 | protected function getFunctions() |
||
11 | { |
||
12 | return [new IsAuthenticated()]; |
||
13 | } |
||
14 | |||
15 | public function testIsAuthenticated() |
||
16 | { |
||
17 | $this->assertExpressionCompile('isAuthenticated()', $this->matchesRegularExpression('/^IS_AUTHENTICATED_(REMEMBERED|FULLY)$/')); |
||
18 | } |
||
19 | } |
||
20 |