for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of Laravel SMSFactor.
*
* (c) Filippo Galante <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace IlGala\Tests\SMSFactor;
use IlGala\SMSFactor\SMSFactorServiceProvider;
use GrahamCampbell\TestBench\AbstractPackageTestCase;
/**
* This is the abstract test case class.
* @author Filippo Galante <[email protected]>
abstract class AbstractTestCase extends AbstractPackageTestCase
{
* Get the service provider class.
* @param \Illuminate\Contracts\Foundation\Application $app
* @return string
protected function getServiceProviderClass($app)
return SMSFactorServiceProvider::class;
}