Add newlines and strict types

This commit is contained in:
James Cole 2018-03-05 19:35:58 +01:00
parent 0d72fcdf02
commit a97bfc92e1
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
100 changed files with 112 additions and 89 deletions

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**
* Authenticate.php
* Copyright (c) 2018 thegrumpydictator@gmail.com

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**

View File

@ -156,6 +156,9 @@ class Preferences
if (null !== $preference) {
$lastActivity = $preference->data;
}
if (is_array($lastActivity)) {
$lastActivity = implode(',', $lastActivity);
}
return md5($lastActivity);
}

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**

View File

@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
/**