Skip to content

Commit

Permalink
fixed lock functionality after mergi =ng scrutiniser changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Donat committed Sep 13, 2014
1 parent ccd513b commit 64ca660
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
|Build status|Coverage|Last stable|Last development|Quality|
|:-------------:|:-------------:|:-----:|:-----:|:----------:|
|[![Build Status](https://travis-ci.org/thornag/php-vfs.png)](https://travis-ci.org/thornag/php-vfs)|[![Coverage Status](https://coveralls.io/repos/thornag/php-vfs/badge.png?branch=master)](https://coveralls.io/r/thornag/php-vfs?branch=master)|[![Latest Stable Version](https://poser.pugx.org/php-vfs/php-vfs/v/stable.png)](https://packagist.org/packages/php-vfs/php-vfs)|[![Latest Unstable Version](https://poser.pugx.org/php-vfs/php-vfs/v/unstable.png)](https://packagist.org/packages/php-vfs/php-vfs)|[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/thornag/php-vfs/badges/quality-score.png?s=6b2da342adc2bbe961fc9e1b0e467c3ecc1007d0)](https://scrutinizer-ci.com/g/thornag/php-vfs/)|
|[![Build Status](https://travis-ci.org/thornag/php-vfs.png)](https://travis-ci.org/thornag/php-vfs)|[![Coverage Status](https://coveralls.io/repos/thornag/php-vfs/badge.png?branch=1.2.x)](https://coveralls.io/r/thornag/php-vfs?branch=1.2.x)|[![Latest Stable Version](https://poser.pugx.org/php-vfs/php-vfs/v/stable.png)](https://packagist.org/packages/php-vfs/php-vfs)|[![Latest Unstable Version](https://poser.pugx.org/php-vfs/php-vfs/v/unstable.png)](https://packagist.org/packages/php-vfs/php-vfs)|[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/thornag/php-vfs/badges/quality-score.png?s=6b2da342adc2bbe961fc9e1b0e467c3ecc1007d0)](https://scrutinizer-ci.com/g/thornag/php-vfs/)|

php-vfs
========
Expand Down
2 changes: 1 addition & 1 deletion src/VirtualFileSystem/Wrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,6 @@ public function dir_rewinddir()

public function stream_lock($operation)
{
return $this->currently_opened->lock($this, $operation);
return $this->currentlyOpenedFile->lock($this, $operation);
}
}

0 comments on commit 64ca660

Please sign in to comment.