File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 16
16
17
17
namespace GrahamCampbell \Tests \HTMLMin ;
18
18
19
- use GrahamCampbell \TestBench \AbstractLaravelTestCase ;
19
+ use GrahamCampbell \TestBench \AbstractPackageTestCase ;
20
20
21
21
/**
22
22
* This is the abstract test case class.
25
25
* @copyright 2013-2014 Graham Campbell
26
26
* @license <https://github.com/GrahamCampbell/Laravel-HTMLMin/blob/master/LICENSE.md> Apache 2.0
27
27
*/
28
- abstract class AbstractTestCase extends AbstractLaravelTestCase
28
+ abstract class AbstractTestCase extends AbstractPackageTestCase
29
29
{
30
30
/**
31
31
* Get the service provider class.
32
32
*
33
+ * @param \Illuminate\Contracts\Foundation\Application $app
34
+ *
33
35
* @return string
34
36
*/
35
- protected function getServiceProviderClass ()
37
+ protected function getServiceProviderClass ($ app )
36
38
{
37
39
return 'GrahamCampbell\HTMLMin\HTMLMinServiceProvider ' ;
38
40
}
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class BladeEnabledTest extends AbstractFunctionalTestCase
34
34
*
35
35
* @return void
36
36
*/
37
- protected function additionalSetup (Application $ app )
37
+ protected function additionalSetup ($ app )
38
38
{
39
39
$ app ['config ' ]->set ('graham-campbell/htmlmin::blade ' , true );
40
40
}
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class LiveEnabledTest extends AbstractFunctionalTestCase
36
36
*
37
37
* @return void
38
38
*/
39
- protected function additionalSetup (Application $ app )
39
+ protected function additionalSetup ($ app )
40
40
{
41
41
$ app ['config ' ]->set ('graham-campbell/htmlmin::live ' , true );
42
42
}
You can’t perform that action at this time.
0 commit comments