1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 00:20:08 +01:00

Move string concat to one line

This commit is contained in:
Matt Stauffer
2022-03-12 00:23:35 -05:00
2 changed files with 6 additions and 7 deletions

View File

@@ -154,7 +154,6 @@ public function test_linked_php_returns_linked_php_formula_name()
$files = Mockery::mock(Filesystem::class);
$files->shouldReceive('readLink')->once()->with(BREW_PREFIX.'/bin/php')->andReturn('/test/path/php72/7.2.9_2/test');
$this->assertSame('php@7.2', $getBrewMock($files)->linkedPhp());
}
public function test_linked_php_throws_exception_if_no_php_link()