Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #8 from core23/develop
Browse files Browse the repository at this point in the history
[PATCH] Make test classes final
  • Loading branch information
core23 committed Jun 25, 2019
2 parents 665c343 + b4b3983 commit 866d621
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/Action/AuthErrorActionTest.php
Expand Up @@ -22,7 +22,7 @@
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
use Twig\Environment;

class AuthErrorActionTest extends TestCase
final class AuthErrorActionTest extends TestCase
{
private $twig;

Expand Down
2 changes: 1 addition & 1 deletion tests/Action/AuthSuccessActionTest.php
Expand Up @@ -23,7 +23,7 @@
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
use Twig\Environment;

class AuthSuccessActionTest extends TestCase
final class AuthSuccessActionTest extends TestCase
{
private $twig;

Expand Down
2 changes: 1 addition & 1 deletion tests/Action/CheckAuthActionTest.php
Expand Up @@ -25,7 +25,7 @@
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Routing\RouterInterface;

class CheckAuthActionTest extends TestCase
final class CheckAuthActionTest extends TestCase
{
private $router;

Expand Down
2 changes: 1 addition & 1 deletion tests/Action/StartAuthActionTest.php
Expand Up @@ -16,7 +16,7 @@
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Routing\RouterInterface;

class StartAuthActionTest extends TestCase
final class StartAuthActionTest extends TestCase
{
private $router;

Expand Down
2 changes: 1 addition & 1 deletion tests/Connection/FacebookConnectionTest.php
Expand Up @@ -13,7 +13,7 @@
use Facebook\Facebook;
use PHPUnit\Framework\TestCase;

class FacebookConnectionTest extends TestCase
final class FacebookConnectionTest extends TestCase
{
public function testItIsInstantiable(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Event/AuthFailedEventTest.php
Expand Up @@ -14,7 +14,7 @@
use Symfony\Component\HttpFoundation\Response;
use Symfony\Contracts\EventDispatcher\Event;

class AuthFailedEventTest extends TestCase
final class AuthFailedEventTest extends TestCase
{
public function testCreation(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Event/AuthSuccessEventTest.php
Expand Up @@ -15,7 +15,7 @@
use Symfony\Component\HttpFoundation\Response;
use Symfony\Contracts\EventDispatcher\Event;

class AuthSuccessEventTest extends TestCase
final class AuthSuccessEventTest extends TestCase
{
public function testCreation(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Session/SessionManagerTest.php
Expand Up @@ -17,7 +17,7 @@
use Prophecy\Argument;
use Symfony\Component\HttpFoundation\Session\Session;

class SessionManagerTest extends TestCase
final class SessionManagerTest extends TestCase
{
public function testIsAuthenticated(): void
{
Expand Down

0 comments on commit 866d621

Please sign in to comment.