Skip to content

Commit

Permalink
Merge branch 'release/2.11.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
bobthecow committed Jul 31, 2016
2 parents 789904e + 87e87e2 commit a3f6d55
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Mustache/Engine.php
Expand Up @@ -23,7 +23,7 @@
*/
class Mustache_Engine
{
const VERSION = '2.11.0';
const VERSION = '2.11.1';
const SPEC_VERSION = '1.1.2';

const PRAGMA_FILTERS = 'FILTERS';
Expand Down
7 changes: 4 additions & 3 deletions test/bootstrap.php
Expand Up @@ -56,7 +56,7 @@ public function stream_open($path, $mode)
*/
public function stream_stat()
{
return [];
return array();
}

/**
Expand Down Expand Up @@ -86,5 +86,6 @@ public function stream_close()
}
}

stream_wrapper_register('test', TestStream::class)
|| die('Failed to register protocol');
if (!stream_wrapper_register('test', 'TestStream')) {
die('Failed to register protocol');
}

0 comments on commit a3f6d55

Please sign in to comment.