mirror of
https://github.com/laravel/valet.git
synced 2026-02-08 09:10:10 +01:00
Fix code styling
This commit is contained in:
committed by
github-actions[bot]
parent
5b28d4bd0f
commit
fc1b23b523
@@ -6,21 +6,21 @@ class JigsawValetDriverTest extends BaseDriverTestCase
|
||||
{
|
||||
public function test_it_serves_jigsaw_projects()
|
||||
{
|
||||
$driver = new JigsawValetDriver();
|
||||
$driver = new JigsawValetDriver;
|
||||
|
||||
$this->assertTrue($driver->serves($this->projectDir('jigsaw'), 'my-site', '/'));
|
||||
}
|
||||
|
||||
public function test_it_doesnt_serve_non_jigsaw_projects_with_public_directory()
|
||||
{
|
||||
$driver = new JigsawValetDriver();
|
||||
$driver = new JigsawValetDriver;
|
||||
|
||||
$this->assertFalse($driver->serves($this->projectDir('public-with-index-non-laravel'), 'my-site', '/'));
|
||||
}
|
||||
|
||||
public function test_it_mutates_uri()
|
||||
{
|
||||
$driver = new JigsawValetDriver();
|
||||
$driver = new JigsawValetDriver;
|
||||
|
||||
$this->assertEquals('/build_local/about', $driver->mutateUri('/about'));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user