Bolt\Filesystem\UploadContainer::delete PHP Method

delete() public method

public delete ( $file )
    public function delete($file)
    {
        $this->filesystem->delete($file);
    }

Usage Example

Example #1
0
 /**
  * @expectedException \Bolt\Filesystem\Exception\FileNotFoundException
  */
 public function testDelete()
 {
     $this->container->delete('filename');
 }