1 | <?php namespace Webwizo\Shortcodes; |
||
5 | class TestCase extends TestBenchTestCase |
||
6 | { |
||
7 | |||
8 | protected function getPackageProviders($app) |
||
9 | { |
||
10 | return ['Webwizo\Shortcodes\ShortcodesServiceProvider']; |
||
11 | } |
||
12 | |||
13 | protected function getPackageAliases($app) |
||
14 | { |
||
15 | return [ |
||
16 | 'Shortcode' => 'Webwizo\Shortcodes\Facades\Shortcode' |
||
17 | ]; |
||
18 | } |
||
19 | } |
||
20 |