You are here

public function vfsStreamAbstractContent::lastAttributeModified in Zircon Profile 8.0

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

sets the last attribute modification time of the stream content

@since 0.9

Parameters

int $filectime:

Return value

$this

File

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

Class

vfsStreamAbstractContent
Base stream contents container.

Namespace

org\bovigo\vfs

Code

public function lastAttributeModified($filectime) {
  $this->lastAttributeModified = $filectime;
  return $this;
}