File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class StaticSiteServe extends Command
3333 /**
3434 * The list of requests being handled and their start time.
3535 *
36- * @var array<int, \Illuminate\Support\ Carbon>
36+ * @var array<int, Carbon>
3737 */
3838 protected $ requestsPool ;
3939
@@ -68,7 +68,7 @@ public function handle()
6868 * Start a new server process.
6969 *
7070 * @param bool $hasEnvironment
71- * @return \Symfony\Component\Process\ Process
71+ * @return Process
7272 */
7373 protected function startProcess ()
7474 {
@@ -208,7 +208,7 @@ protected function handleProcessOutput()
208208 * Get the date from the given PHP server output.
209209 *
210210 * @param string $line
211- * @return \Illuminate\Support\ Carbon
211+ * @return Carbon
212212 */
213213 protected function getDateFromLine ($ line )
214214 {
Original file line number Diff line number Diff line change 44
55use Illuminate \Filesystem \Filesystem ;
66use Orchestra \Testbench \TestCase as OrchestraTestCase ;
7+ use Statamic \Providers \StatamicServiceProvider ;
78use Statamic \Statamic ;
9+ use Wilderborn \Partyline \ServiceProvider ;
810
911class TestCase extends OrchestraTestCase
1012{
@@ -14,8 +16,8 @@ class TestCase extends OrchestraTestCase
1416 protected function getPackageProviders ($ app )
1517 {
1618 return [
17- \ Statamic \ Providers \ StatamicServiceProvider::class,
18- \ Wilderborn \ Partyline \ ServiceProvider::class,
19+ StatamicServiceProvider::class,
20+ ServiceProvider::class,
1921 \Statamic \StaticSite \ServiceProvider::class,
2022 ];
2123 }
You can’t perform that action at this time.
0 commit comments