for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jackal\ImageMerge\Model\File;
use \SplFileObject;
class FileObject extends SplFileObject implements FileObjectInterface
{
public function getContents()
$this->seek(0);
return $this->fread($this->getSize());
}