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 IsFullyAuthenticatedTest extends TestCase |
||
9 | { |
||
10 | protected function getFunctions() |
||
11 | { |
||
12 | return [new IsFullyAuthenticated()]; |
||
13 | } |
||
14 | |||
15 | public function testIsFullyAuthenticated() |
||
16 | { |
||
17 | $this->assertExpressionCompile('isFullyAuthenticated()', 'IS_AUTHENTICATED_FULLY'); |
||
18 | } |
||
19 | } |
||
20 |