You are here

public function vfsStreamAbstractContent::chgrp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStreamAbstractContent.php \org\bovigo\vfs\vfsStreamAbstractContent::chgrp()

change owner group of file to given group

Parameters

int $group:

Return value

$this

Overrides vfsStreamContent::chgrp

File

vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/vfsStreamAbstractContent.php, line 353

Class

vfsStreamAbstractContent
Base stream contents container.

Namespace

org\bovigo\vfs

Code

public function chgrp($group) {
  $this->group = $group;
  $this->lastAttributeModified = time();
  return $this;
}