File_Handler_Directory::forge('path/to/dir');without receiving
2. Then, if this third parameter's value for is passed in as null, $this->area is also set to null, which causes problems when $this->area is used later in the class with $this->area->rename_dir($var), $this->area->copy_dir($var), etc. I fixed this with:ErrorException [ 4096 ]: Argument 3 passed to Fuel\Core\File_Handler_Directory::__construct() must be an instance of Fuel\Core\File_Area, null given.
$this->area = ! is_null($area) ? $area : \File_Area::forge();
$this->area = ! is_null($area) ? $area : \File_Area::forge($config);
It looks like you're new here. If you want to get involved, click one of these buttons!