🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:NoLock.php
<?php namespace Illuminate\Cache; class NoLock extends Lock { /** * Attempt to acquire the lock. * * @return bool */ public function acquire() { return true; } /** * Release the lock. * * @return bool */ public function release() { return true; } /** * Releases this lock in disregard of ownership. * * @return void */ public function forceRelease() { // } /** * Determine if the lock is currently held by any process. * * @return bool */ public function isLocked(): bool { return false; } /** * Returns the owner value written into the driver for this lock. * * @return mixed */ protected function getCurrentOwner() { return $this->owner; } }
Save Changes
Cancel
Create New File
Create New Folder