Skip to content

Commit 9bd7ce2

Browse files
committed
Drop debugging statements and fix CS
1 parent c788fd2 commit 9bd7ce2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/Restarter.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ protected function restart($command)
1111
{
1212
assert(null !== $this->tmpIni);
1313
$contents = file_get_contents($this->tmpIni);
14-
$contents = preg_replace('/^auto_prepend_file="' . preg_quote(__DIR__ . '/prepend.php', '/') . '"/m', '', $contents, -1, $count);
15-
var_dump($count);
14+
$contents = preg_replace(
15+
'/^auto_prepend_file="' . preg_quote(__DIR__ . '/prepend.php', '/') . '"/m',
16+
'',
17+
$contents
18+
);
1619
file_put_contents($this->tmpIni, $contents);
1720
parent::restart($command);
1821
}

0 commit comments

Comments
 (0)