Skip to content

Commit

Permalink
Merge pull request #106 from tiger-seo/master
Browse files Browse the repository at this point in the history
correct type inference for PhpStorm
  • Loading branch information
mikey179 committed Mar 31, 2015
2 parents 4dc0d2f + 05e2933 commit 29e2ba8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main/php/org/bovigo/vfs/vfsStreamAbstractContent.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public function getType()
* sets the last modification time of the stream content
*
* @param int $filemtime
* @return vfsStreamContent
* @return $this
*/
public function lastModified($filemtime)
{
Expand All @@ -170,7 +170,7 @@ public function filemtime()
* sets last access time of the stream content
*
* @param int $fileatime
* @return vfsStreamContent
* @return $this
* @since 0.9
*/
public function lastAccessed($fileatime)
Expand All @@ -194,7 +194,7 @@ public function fileatime()
* sets the last attribute modification time of the stream content
*
* @param int $filectime
* @return vfsStreamContent
* @return $this
* @since 0.9
*/
public function lastAttributeModified($filectime)
Expand All @@ -218,7 +218,7 @@ public function filectime()
* adds content to given container
*
* @param vfsStreamContainer $container
* @return vfsStreamContent
* @return $this
*/
public function at(vfsStreamContainer $container)
{
Expand All @@ -230,7 +230,7 @@ public function at(vfsStreamContainer $container)
* change file mode to given permissions
*
* @param int $permissions
* @return vfsStreamContent
* @return $this
*/
public function chmod($permissions)
{
Expand Down Expand Up @@ -314,7 +314,7 @@ public function isExecutable($user, $group)
* change owner of file to given user
*
* @param int $user
* @return vfsStreamContent
* @return $this
*/
public function chown($user)
{
Expand Down Expand Up @@ -348,7 +348,7 @@ public function getUser()
* change owner group of file to given group
*
* @param int $group
* @return vfsStreamContent
* @return $this
*/
public function chgrp($group)
{
Expand Down Expand Up @@ -416,4 +416,4 @@ public function url()
return vfsStream::url($this->path());
}
}
?>
?>

0 comments on commit 29e2ba8

Please sign in to comment.