Skip to content

Commit

Permalink
Remove useless methods overrides (#39164)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmichot authored Oct 11, 2021
1 parent 555617e commit d41ff7e
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 45 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ class SendingNotificationsViaAnonymousNotifiableTest extends TestCase
{
public $mailer;

protected function setUp(): void
{
parent::setUp();
}

protected function getEnvironmentSetUp($app)
{
$app['config']->set('app.debug', 'true');
Expand Down
5 changes: 0 additions & 5 deletions tests/Integration/Queue/JobChainingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ class JobChainingTest extends TestCase
{
public static $catchCallbackRan = false;

protected function setUp(): void
{
parent::setUp();
}

protected function getEnvironmentSetUp($app)
{
$app['config']->set('app.debug', 'true');
Expand Down
5 changes: 0 additions & 5 deletions tests/Integration/Queue/UniqueJobTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@
*/
class UniqueJobTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
}

protected function getEnvironmentSetUp($app)
{
$app['config']->set('database.default', 'testbench');
Expand Down
5 changes: 0 additions & 5 deletions tests/Integration/Queue/WorkCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@
*/
class WorkCommandTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
}

protected function getEnvironmentSetUp($app)
{
$app['config']->set('app.debug', 'true');
Expand Down
5 changes: 0 additions & 5 deletions tests/Notifications/NotificationChannelManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@

class NotificationChannelManagerTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
}

protected function tearDown(): void
{
m::close();
Expand Down
5 changes: 0 additions & 5 deletions tests/Notifications/NotificationSenderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@

class NotificationSenderTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
}

protected function tearDown(): void
{
parent::tearDown();
Expand Down
5 changes: 0 additions & 5 deletions tests/Queue/QueueBeanstalkdQueueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ class QueueBeanstalkdQueueTest extends TestCase
*/
private $container;

protected function setUp(): void
{
parent::setUp();
}

protected function tearDown(): void
{
m::close();
Expand Down
5 changes: 0 additions & 5 deletions tests/Queue/QueueDatabaseQueueUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@

class QueueDatabaseQueueUnitTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
}

protected function tearDown(): void
{
m::close();
Expand Down
5 changes: 0 additions & 5 deletions tests/Queue/QueueRedisQueueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@

class QueueRedisQueueTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
}

protected function tearDown(): void
{
m::close();
Expand Down

0 comments on commit d41ff7e

Please sign in to comment.