Skip to content

Commit

Permalink
Merge pull request #2 from chsergey/postmantests
Browse files Browse the repository at this point in the history
php5.3 syntax fix
  • Loading branch information
chsergey committed Apr 23, 2016
2 parents e184bd3 + 8e1bedd commit a788ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Blueman/Console/Command/ConvertCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ private function parseTestsFile($testsFile)
$code = '/^(```)(.*)/';

foreach ($markdown as $line) {
$matches = [];
$matches = array();
$head = $head ? $head : false;
if(preg_match($heading, $line, $matches)) {
$mode = $matches[1];
Expand Down

0 comments on commit a788ca4

Please sign in to comment.