mirror of
https://github.com/laravel/valet.git
synced 2026-02-07 17:10:05 +01:00
Fix code styling
This commit is contained in:
committed by
github-actions[bot]
parent
5b28d4bd0f
commit
fc1b23b523
@@ -6,7 +6,7 @@ class BasicValetDriverTest extends BaseDriverTestCase
|
||||
{
|
||||
public function test_it_serves_anything()
|
||||
{
|
||||
$driver = new BasicValetDriver();
|
||||
$driver = new BasicValetDriver;
|
||||
|
||||
foreach ($this->projects() as $projectDir) {
|
||||
$this->assertTrue($driver->serves($projectDir, 'my-site', '/'));
|
||||
@@ -16,7 +16,7 @@ public function test_it_serves_anything()
|
||||
public function test_it_serves_php_files_from_root()
|
||||
{
|
||||
$projectPath = $this->projectDir('basic-no-public');
|
||||
$driver = new BasicValetDriver();
|
||||
$driver = new BasicValetDriver;
|
||||
|
||||
$this->assertEquals(
|
||||
$projectPath.'/file-in-root.php',
|
||||
@@ -27,7 +27,7 @@ public function test_it_serves_php_files_from_root()
|
||||
public function test_it_serves_directory_with_index_php()
|
||||
{
|
||||
$projectPath = $this->projectDir('basic-no-public');
|
||||
$driver = new BasicValetDriver();
|
||||
$driver = new BasicValetDriver;
|
||||
|
||||
$this->assertEquals(
|
||||
$projectPath.'/about/index.php',
|
||||
@@ -38,7 +38,7 @@ public function test_it_serves_directory_with_index_php()
|
||||
public function test_it_routes_to_index_if_404()
|
||||
{
|
||||
$projectPath = $this->projectDir('basic-no-public');
|
||||
$driver = new BasicValetDriver();
|
||||
$driver = new BasicValetDriver;
|
||||
|
||||
$this->assertEquals(
|
||||
$projectPath.'/index.php',
|
||||
@@ -49,7 +49,7 @@ public function test_it_routes_to_index_if_404()
|
||||
public function test_it_serves_directory_with_index_html()
|
||||
{
|
||||
$projectPath = $this->projectDir('basic-no-public');
|
||||
$driver = new BasicValetDriver();
|
||||
$driver = new BasicValetDriver;
|
||||
|
||||
$this->assertEquals(
|
||||
$projectPath.'/team/index.html',
|
||||
@@ -60,7 +60,7 @@ public function test_it_serves_directory_with_index_html()
|
||||
public function test_it_serves_static_files()
|
||||
{
|
||||
$projectPath = $this->projectDir('basic-no-public');
|
||||
$driver = new BasicValetDriver();
|
||||
$driver = new BasicValetDriver;
|
||||
|
||||
$this->assertEquals(
|
||||
$projectPath.'/assets/document.txt',
|
||||
|
||||
Reference in New Issue
Block a user