Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.    public static function getFileSize($path, $skipCheck = false) {
  2.         return ($skipCheck || static::isFile($path)) ? filesize($path) : false;
  3.    }
  4.  
  5.    .... and change to the following:
  6.       public static function getFileSize($path, $skipCheck = false) {
  7.         return ($skipCheck || static::isFile($path)) ? filesize($path) : 0;
  8.    }