Skip to content

Commit ce23456

Browse files
committed
coding style
1 parent 69599c8 commit ce23456

File tree

8 files changed

+10
-1
lines changed

8 files changed

+10
-1
lines changed

src/Utils/Json.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ final class Json
2020
use Nette\StaticClass;
2121

2222
const FORCE_ARRAY = 0b0001;
23+
2324
const PRETTY = 0b0010;
2425

2526

src/Utils/SmartObject.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
namespace Nette;
1111

12-
use Nette\Utils\Callback;
1312
use Nette\Utils\ObjectHelpers;
1413

1514

tests/Utils/Object.closureProperty.phpt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ require __DIR__ . '/../bootstrap.php';
1515
class TestClass extends Nette\Object
1616
{
1717
public $public;
18+
1819
public $onPublic;
20+
1921
protected $protected;
22+
2023
private $private;
2124

2225

tests/Utils/Object.extensionMethod.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ require __DIR__ . '/../bootstrap.php';
1515
class TestClass extends Nette\Object
1616
{
1717
public $foo = 'Hello';
18+
1819
public $bar = 'World';
1920
}
2021

tests/Utils/Object.extensionMethodViaInterface.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ interface ISecond extends IFirst
2525
class TestClass extends Object implements ISecond
2626
{
2727
public $foo = 'Hello';
28+
2829
public $bar = 'World';
2930
}
3031

tests/Utils/Object.magicMethod.inheritance.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ require __DIR__ . '/../bootstrap.php';
2121
class ParentClass extends Nette\Object
2222
{
2323
protected $a;
24+
2425
private $b;
2526
}
2627

tests/Utils/Object.property.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ require __DIR__ . '/../bootstrap.php';
1515
class TestClass extends Nette\Object
1616
{
1717
public $declared;
18+
1819
private $foo;
20+
1921
private $bar;
2022

2123

tests/Utils/SmartObject.property.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class TestClass
2424
public $declared;
2525

2626
private $foo;
27+
2728
private $bar;
2829

2930

0 commit comments

Comments
 (0)