Skip to content

Commit e232267

Browse files
author
stlrnz
committed
fixed coding standard
1 parent 54b7c70 commit e232267

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Lock.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ public function get($name)
4949

5050
public function set($name, $data)
5151
{
52-
if (!array_key_exists($name, $this->lock) || $data !== $this->lock[$name]) {
52+
if (!\array_key_exists($name, $this->lock) || $data !== $this->lock[$name]) {
5353
$this->lock[$name] = $data;
5454
$this->changed = true;
5555
}
5656
}
5757

5858
public function remove($name)
5959
{
60-
if (array_key_exists($name, $this->lock)) {
60+
if (\array_key_exists($name, $this->lock)) {
6161
unset($this->lock[$name]);
6262
$this->changed = true;
6363
}

0 commit comments

Comments
 (0)