D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
/
Filename :
FileLock.php
back
Copy
<?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); } }