@@ -21,7 +21,7 @@ |
||
| 21 | 21 | return self::create([ |
| 22 | 22 | 'file_id' => $fileId, |
| 23 | 23 | 'token' => md5(uniqid(rand(), true)), |
| 24 | - 'created_by' => Auth::id()?: 0, |
|
| 24 | + 'created_by' => Auth::id() ?: 0, |
|
| 25 | 25 | 'expires_at' => date('Y-m-d H:i:s', strtotime($expires)), |
| 26 | 26 | ]); |
| 27 | 27 | } |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | try { |
| 106 | 106 | $file = is_numeric($idOrMeta) ? self::get($idOrMeta) : $idOrMeta; |
| 107 | 107 | |
| 108 | - if (! file_exists($file->content->path)) { |
|
| 108 | + if (!file_exists($file->content->path)) { |
|
| 109 | 109 | throw new FileNotFound('Exception - file not found: ' . $file->content->path); |
| 110 | 110 | } |
| 111 | 111 | } catch (\Exception $exception) { |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | { |
| 131 | 131 | $ids = []; |
| 132 | 132 | foreach ((array) $files as $filePath) { |
| 133 | - if (! is_numeric($filePath)) { |
|
| 133 | + if (!is_numeric($filePath)) { |
|
| 134 | 134 | $ids[] = self::put($filePath); |
| 135 | 135 | |
| 136 | 136 | continue; |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | public static function put($fileOrPath, $content = null) |
| 164 | 164 | { |
| 165 | 165 | $file = $fileOrPath; |
| 166 | - if (! $content && is_string($fileOrPath)) { |
|
| 166 | + if (!$content && is_string($fileOrPath)) { |
|
| 167 | 167 | $content = file_get_contents($fileOrPath); |
| 168 | 168 | |
| 169 | 169 | $file = [ |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | |
| 197 | 197 | public function getThumbnailAttribute() |
| 198 | 198 | { |
| 199 | - if (! $this->thumbnailPossible()) return false; |
|
| 199 | + if (!$this->thumbnailPossible()) return false; |
|
| 200 | 200 | |
| 201 | 201 | $image = new \Imagick($this->content->path . '[0]'); |
| 202 | 202 | |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | { |
| 16 | 16 | $this->down(); |
| 17 | 17 | |
| 18 | - Schema::create('filestorage_contents', function (Blueprint $table) { |
|
| 18 | + Schema::create('filestorage_contents', function(Blueprint $table) { |
|
| 19 | 19 | $table->bigIncrements('id'); |
| 20 | 20 | $table->string('hash', 128); |
| 21 | 21 | $table->integer('size'); |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | $table->softDeletes(); |
| 25 | 25 | }); |
| 26 | 26 | |
| 27 | - Schema::create('filestorage_files', function (Blueprint $table) { |
|
| 27 | + Schema::create('filestorage_files', function(Blueprint $table) { |
|
| 28 | 28 | $table->bigIncrements('id'); |
| 29 | 29 | $table->string('name', 256); |
| 30 | 30 | $table->string('link', 128)->nullable(); |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | $table->foreign('created_by')->references('id')->on('users'); |
| 40 | 40 | }); |
| 41 | 41 | |
| 42 | - Schema::create('filestorage_remote_access', function (Blueprint $table) { |
|
| 42 | + Schema::create('filestorage_remote_access', function(Blueprint $table) { |
|
| 43 | 43 | $table->bigIncrements('id'); |
| 44 | 44 | $table->unsignedBigInteger('file_id'); |
| 45 | 45 | $table->string('token', 128); |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | $table->foreign('created_by')->references('id')->on('users'); |
| 52 | 52 | }); |
| 53 | 53 | |
| 54 | - Schema::create('filestorage_access_log', function (Blueprint $table) { |
|
| 54 | + Schema::create('filestorage_access_log', function(Blueprint $table) { |
|
| 55 | 55 | $table->bigIncrements('id'); |
| 56 | 56 | $table->unsignedBigInteger('file_id'); |
| 57 | 57 | $table->timestamp('accessed_at'); |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | final public static function getActionUrls($file, $accessParams = []) |
| 51 | 51 | { |
| 52 | - $id = is_numeric($file)? $file: $file->id; |
|
| 52 | + $id = is_numeric($file) ? $file : $file->id; |
|
| 53 | 53 | |
| 54 | 54 | $urls = []; |
| 55 | 55 | foreach (static::$allowedActions as $action) { |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | final protected function hasUserAccess() |
| 68 | 68 | { |
| 69 | - return $this->forUsersOnly? (bool) Auth::id(): true; |
|
| 69 | + return $this->forUsersOnly ? (bool) Auth::id() : true; |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |