Skip to content

Commit cc8ca1a

Browse files
committed
fix invalid const
1 parent 851d25c commit cc8ca1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CloudinaryAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function rename($path, $newpath)
104104
$pathInfo = pathinfo($path);
105105
$newPathInfo = pathinfo($newpath);
106106

107-
$remotePath = ($pathInfo['dirname'] != '.') ? pathInfo['dirname'] . '/' . $pathInfo['filename'] : $pathInfo['filename'];
107+
$remotePath = ($pathInfo['dirname'] != '.') ? $pathInfo['dirname'] . '/' . $pathInfo['filename'] : $pathInfo['filename'];
108108

109109
$remoteNewPath = ($pathInfo['dirname'] != '.') ? $newPathInfo['dirname'] . '/' . $newPathInfo['filename'] : $newPathInfo['filename'];
110110

0 commit comments

Comments
 (0)