aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.php2
-rw-r--r--private/controller/Controller.php2
-rw-r--r--private/model/Connection.php2
-rw-r--r--private/model/creds.php2
-rw-r--r--private/view/Result.php2
5 files changed, 5 insertions, 5 deletions
diff --git a/index.php b/index.php
index 03bce1b..0753d6b 100644
--- a/index.php
+++ b/index.php
@@ -1,6 +1,6 @@
<?php
-declare(strict_types = On);
+declare(strict_types=1);
namespace AugustOffensive;
diff --git a/private/controller/Controller.php b/private/controller/Controller.php
index eda5e13..c563367 100644
--- a/private/controller/Controller.php
+++ b/private/controller/Controller.php
@@ -1,6 +1,6 @@
<?php
-declare(strict_types = On);
+declare(strict_types=1);
namespace AugustOffensive\controller;
diff --git a/private/model/Connection.php b/private/model/Connection.php
index 31b58c3..18b0d72 100644
--- a/private/model/Connection.php
+++ b/private/model/Connection.php
@@ -1,6 +1,6 @@
<?php
-declare(strict_types = On);
+declare(strict_types=1);
namespace AugustOffensive\model;
diff --git a/private/model/creds.php b/private/model/creds.php
index 8ec06ad..accffa5 100644
--- a/private/model/creds.php
+++ b/private/model/creds.php
@@ -1,6 +1,6 @@
<?php
-declare(strict_types = On);
+declare(strict_types=1);
/**
* Holds the credentials for connecting to the database
diff --git a/private/view/Result.php b/private/view/Result.php
index 43e69fc..a86a5bd 100644
--- a/private/view/Result.php
+++ b/private/view/Result.php
@@ -1,6 +1,6 @@
<?php
-declare(strict_types = On);
+declare(strict_types=1);
namespace AugustOffensive\view;