for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FilmTools\Commons;
class Zones extends MinMaxArrayIterator implements ZonesInterface, ZonesProviderInterface
{
use SearchableTrait;
/**
* @inheritDoc
* @return $this
*/
public function getZones() : ZonesInterface
return $this;
}
* @return Exposures
public function getExposures() : ExposuresInterface
return new Exposures( array_map( function( $zone ) {
return $zone * log10(2);
}, $this->getArrayCopy()));