for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Meema\MediaRecognition\Traits;
trait InteractsWithStorage
{
/**
* The disk of where the file to analyze is stored.
*
* @var string
*/
protected string $disk;
* The path of the file to analyze.
protected string $path;
* Set where to store the converted file.
* @param string $disk
* @return $this
public function disk(string $disk)
$this->disk = $disk;
return $this;
}
* @param string $path
public function path(string $path)
$this->path = $path;