for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/******************************************************************************
* An iterator interface over the Leagues flysystem.
* Copyright (c) 2021, 2015 Richard Klees <[email protected]>
*
* This software is licensed under GPLv3. You should have received
* a copy of the along with the code.
*/
namespace Lechimp\Flightcontrol;
/**
* This represents an FSObject-like object that is required during
* unfolding a directory structure.
class VirtualFSObject extends FSObject
{
public function name() : string
return $this->path();
}
public function mimetype() : ?string
return null;
public function isFile() : bool
return false;