for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ExiftoolReader\Config;
/**
* Class Config
*/
class Exiftool extends AbstractConfig
{
* Config.
*
* @var array
protected $config = [
'path' => '/usr/bin/exiftool',
'command' => 'exiftool -j %s',
];
* Get exiftool read command.
* @return string
public function getCommand()
return $this->config['command'];
}
* Where the exiftool is.
public function path()
return $this->config['path'];