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 JoomlaValetDriverTest extends BaseDriverTestCase
|
||||
{
|
||||
public function test_it_serves_joomla_projects()
|
||||
{
|
||||
$driver = new JoomlaValetDriver();
|
||||
$driver = new JoomlaValetDriver;
|
||||
|
||||
$this->assertTrue($driver->serves($this->projectDir('joomla'), 'my-site', '/'));
|
||||
}
|
||||
|
||||
public function test_it_doesnt_serve_non_joomla_projects_with_public_directory()
|
||||
{
|
||||
$driver = new JoomlaValetDriver();
|
||||
$driver = new JoomlaValetDriver;
|
||||
|
||||
$this->assertFalse($driver->serves($this->projectDir('public-with-index-non-laravel'), 'my-site', '/'));
|
||||
}
|
||||
|
||||
public function test_it_gets_front_controller()
|
||||
{
|
||||
$driver = new JoomlaValetDriver();
|
||||
$driver = new JoomlaValetDriver;
|
||||
|
||||
$projectPath = $this->projectDir('joomla');
|
||||
$this->assertEquals($projectPath.'/index.php', $driver->frontControllerPath($projectPath, 'my-site', '/'));
|
||||
|
||||
Reference in New Issue
Block a user