/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
/
Upload File
HOME
<?php namespace Illuminate\Cache; class FileLock extends CacheLock { /** * Attempt to acquire the lock. * * @return bool */ public function acquire() { return $this->store->add($this->name, $this->owner, $this->seconds); } }