Skip to content

Commit 90b2858

Browse files
committed
removed phpcs errors
1 parent f7802d9 commit 90b2858

17 files changed

Lines changed: 18 additions & 19 deletions

src/Brainbits/Blocking/Adapter/AdapterInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ public function exists(IdentifierInterface $identifier);
5959
* @return BlockInterface
6060
*/
6161
public function get(IdentifierInterface $identifier);
62-
}
62+
}

src/Brainbits/Blocking/Adapter/FilesystemAdapter.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ public function touch(BlockInterface $block)
6868
*/
6969
public function remove(BlockInterface $block)
7070
{
71-
if (!$this->exists($block->getIdentifier()))
72-
{
71+
if (!$this->exists($block->getIdentifier())) {
7372
return false;
7473
}
7574

@@ -147,4 +146,4 @@ protected function ensureDirectoryExists($dirname)
147146

148147
return $dirname;
149148
}
150-
}
149+
}

src/Brainbits/Blocking/Block.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ public function getUpdatedAt()
8989
{
9090
return $this->updatedAt;
9191
}
92-
}
92+
}

src/Brainbits/Blocking/BlockInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ public function setUpdatedAt(\DateTime $updatedAt);
5555
* @return \DateTime
5656
*/
5757
public function getUpdatedAt();
58-
}
58+
}

src/Brainbits/Blocking/BlockableInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ interface BlockableInterface
2525
* @return IdentifierInterface
2626
*/
2727
public function getBlockIdentifier();
28-
}
28+
}

src/Brainbits/Blocking/Blocker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ public function getBlock(IdentifierInterface $identifier)
134134

135135
return $this->adapter->get($identifier);
136136
}
137-
}
137+
}

src/Brainbits/Blocking/Exception/BlockingException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
*/
1818
class BlockingException extends Exception
1919
{
20-
}
20+
}

src/Brainbits/Blocking/Exception/DirectoryNotWritableException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
*/
1818
class DirectoryNotWritableException extends Exception
1919
{
20-
}
20+
}

src/Brainbits/Blocking/Exception/Exception.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
*/
1818
class Exception extends \Exception
1919
{
20-
}
20+
}

src/Brainbits/Blocking/Exception/FileNotWritableException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
*/
1818
class FileNotWritableException extends Exception
1919
{
20-
}
20+
}

0 commit comments

Comments
 (0)