for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FilmTools\Developing;
use FilmTools\Commons\DensitiesInterface;
use FilmTools\Commons\ExposuresInterface;
abstract class DevelopingDecoratorAbstract implements DevelopingInterface
{
/**
* @var DevelopingInterface
*/
protected $developing;
* @param DevelopingInterface $developing
public function __construct (DevelopingInterface $developing)
$this->developing = $developing;
}
* @inheritDoc
public function getTime() : int
return $this->developing->getTime();
public function getData() : array
return $this->developing->getData();
FilmTools\Developing\Dev...ingInterface::getData()
This method has been deprecated.
public function count()
return $this->developing->count();
public function getIterator()
return $this->developing->getIterator();
public function getExposures() : ExposuresInterface
return $this->developing->getExposures();
public function getDensities() : DensitiesInterface
return $this->developing->getDensities();
public function has( $logH )
return $this->developing->has ($logH );
public function get( $logH )
return $this->developing->get ($logH );
This method has been deprecated.