Illuminate\Database\Query\Builder::sharedLock PHP Method

sharedLock() public method

Share lock the selected rows in the table.
public sharedLock ( ) : Builder
return Builder
    public function sharedLock()
    {
        return $this->lock(false);
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Share lock the selected rows in the table.
  *
  * @return \Illuminate\Database\Query\Builder 
  * @static 
  */
 public static function sharedLock()
 {
     return \Illuminate\Database\Query\Builder::sharedLock();
 }