Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

Commit

Permalink
Code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Dec 15, 2017
1 parent 09de0f0 commit 7eb0a50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/whoops-editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@
*/
'homestead-projects-path' => '/home/vagrant/projects',

];
];
4 changes: 2 additions & 2 deletions src/Providers/WhoopsEditorServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ protected function overwriteConfig(): void
*/
private function buildUri(string $uri, string $filePath, int $line): string
{
$uri = str_replace("%file", $filePath, $uri);
$uri = str_replace("%line", $line, $uri);
$uri = str_replace('%file', $filePath, $uri);
$uri = str_replace('%line', $line, $uri);

return $uri;
}
Expand Down

0 comments on commit 7eb0a50

Please sign in to comment.