Skip to content

Commit a649d51

Browse files
committed
fix psr2
1 parent 1eff8fd commit a649d51

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/LfmStorageRepository.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ public function move($new_lfm_path)
3636

3737
public function save($file)
3838
{
39-
$nameint = strripos($this->path, "/");
40-
$nameclean = substr($this->path, $nameint + 1);
41-
$pathclean = substr_replace($this->path, "", $nameint);
42-
$this->disk->putFileAs($pathclean, $file, $nameclean, 'public');
39+
$nameint = strripos($this->path, "/");
40+
$nameclean = substr($this->path, $nameint + 1);
41+
$pathclean = substr_replace($this->path, "", $nameint);
42+
$this->disk->putFileAs($pathclean, $file, $nameclean, 'public');
4343
}
4444

4545
public function url($path)

0 commit comments

Comments
 (0)