App\Traits\Uploadable::setFileProperties PHP Method

setFileProperties() public method

Assumes attributes 'hash' and 'ext' of the object by default.
public setFileProperties ( $props )
    public function setFileProperties($props)
    {
        $this->hash = $props['hash'] ?? null;
        $this->ext = $props['ext'] ?? null;
    }