Completed
Push — develop ( ad92f3...c09e63 )
by Greg
11:39
created
app/helpers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@
 block discarded – undo
58 58
 /**
59 59
  * Views do not have namespaces, so create shortcuts to common functions.
60 60
  *
61
- * @param string $string
62 61
  *
62
+ * @param string $route
63 63
  * @return string
64 64
  */
65 65
 function url($route, array $parameters = array()) {
Please login to merge, or discard this patch.
app/Http/Controllers/LoginController.php 2 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,6 @@  discard block
 block discarded – undo
179 179
 	/**
180 180
 	 * Handle a logout request.
181 181
 	 *
182
-	 * @param Tree|null $tree The current tree
183 182
 	 */
184 183
 	public function logoutAction() {
185 184
 		if (Auth::id()) {
@@ -393,7 +392,6 @@  discard block
 block discarded – undo
393 392
 	/**
394 393
 	 * Sucessful submission of a registration form.
395 394
 	 *
396
-	 * @param Tree $tree
397 395
 	 */
398 396
 	public function registrationConfirm() {
399 397
 		$id   = Filter::get('id');
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -406,10 +406,10 @@
 block discarded – undo
406 406
 	}
407 407
 
408 408
 		/**
409
-	 * Respond to a link which was sent to a user to verify their email address.
410
-	 *
411
-	 * @param Tree $tree
412
-	 */
409
+		 * Respond to a link which was sent to a user to verify their email address.
410
+		 *
411
+		 * @param Tree $tree
412
+		 */
413 413
 	public function verifyEmailAction(Tree $tree) {
414 414
 		$id   = Filter::get('id');
415 415
 		$code = Filter::get('code');
Please login to merge, or discard this patch.
resources/views/emails/verify-admin.html.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 </p>
4 4
 
5 5
 <p>
6
-	<?php echo translate('A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).',escape($user->getRealName()),escape($user->getUserName()),escape($user->getEmail())) ?>
6
+	<?php echo translate('A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).', escape($user->getRealName()), escape($user->getUserName()), escape($user->getEmail())) ?>
7 7
 </p>
8 8
 
9 9
 <p>
Please login to merge, or discard this patch.