Skip to content

Commit

Permalink
Add more declare(strict_types = 1) (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfbecker authored Sep 30, 2016
1 parent 9fd9a02 commit 6917f1c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ColumnCalculator.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
declare(strict_types = 1);

namespace LanguageServer;

Expand Down
1 change: 1 addition & 0 deletions src/LanguageServer.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
declare(strict_types = 1);

namespace LanguageServer;

Expand Down
1 change: 1 addition & 0 deletions src/PhpDocument.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
declare(strict_types = 1);

namespace LanguageServer;

Expand Down
1 change: 1 addition & 0 deletions src/Project.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
declare(strict_types = 1);

namespace LanguageServer;

Expand Down
1 change: 1 addition & 0 deletions src/Server/TextDocument.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
declare(strict_types = 1);

namespace LanguageServer\Server;

Expand Down
1 change: 1 addition & 0 deletions src/Server/Workspace.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
declare(strict_types = 1);

namespace LanguageServer\Server;

Expand Down
1 change: 1 addition & 0 deletions src/utils.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
declare(strict_types = 1);

namespace LanguageServer;

Expand Down

0 comments on commit 6917f1c

Please sign in to comment.