Completed
Push — master ( b57115...36326e )
by rugk
07:27
created
src/library/ThreemaGateway/Option/ReceiveCallback.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,6 @@
 block discarded – undo
50 50
     /**
51 51
      * Verifies whether the dir of the file is valid (can be created) and is writable.
52 52
      *
53
-     * @param string             $filepath   Input
54 53
      * @param XenForo_DataWriter $dataWriter
55 54
      * @param string             $fieldName  Name of field/option
56 55
      *
Please login to merge, or discard this patch.
src/library/ThreemaGateway/Option/Status.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      * requirements are not fullfilled.
93 93
      *
94 94
      * @param  array $status     Will be filled with required statuses (sic)
95
-     * @param  array $extraError Optional other errors may be added here
95
+     * @param  string $extraError Optional other errors may be added here
96 96
      * @return bool
97 97
      */
98 98
     protected static function checkTecRequire(&$status, &$extraError)
Please login to merge, or discard this patch.
src/library/ThreemaGateway/Option/ThreemaGatewaySecret.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,6 @@
 block discarded – undo
53 53
     /**
54 54
      * Verifies the Threema Gateway Secret format.
55 55
      *
56
-     * @param string             $threemaid  Input threema ID
57 56
      * @param XenForo_DataWriter $dataWriter
58 57
      * @param string             $fieldName  Name of field/option
59 58
      *
Please login to merge, or discard this patch.
src/library/ThreemaGateway/Installer/TfaProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         $db->query('INSERT INTO `xf_tfa_provider`
56 56
                   (`provider_id`, `provider_class`, `priority`, `active`)
57 57
                   VALUES (?, ?, ?, ?)',
58
-                  [$this->tfaId, $this->tfaClass, $this->tfaPriority, (int) $enabled]);
58
+                    [$this->tfaId, $this->tfaClass, $this->tfaPriority, (int) $enabled]);
59 59
     }
60 60
 
61 61
     /**
Please login to merge, or discard this patch.
src/library/ThreemaGateway/Helper/Message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     public static function getOldestPossibleReplayAttackDate()
58 58
     {
59 59
         /** @var XenForo_Options $options */
60
-        $options   = XenForo_Application::getOptions();
60
+        $options = XenForo_Application::getOptions();
61 61
         /** @var int $rejectOlDefault the default maximum age of a message according*/
62 62
         $rejectOlDefault = strtotime('-14 days', XenForo_Application::$time);
63 63
         /* @var int $rejectOld the maximum age of a message according to the options */
Please login to merge, or discard this patch.