Completed
Push — master ( d6a6e9...1d4c8e )
by Thomas
10:31
created
src/model/SessionQuery.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
  * long as it does not already exist in the output directory.
15 15
  *
16 16
  */
17
-class SessionQuery extends BaseSessionQuery
18
-{
17
+class SessionQuery extends BaseSessionQuery {
19 18
 
20 19
 }
Please login to merge, or discard this patch.
src/model/serializer/_UserSerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 		// attributes
43 43
 		$attribs = isset($data['attributes']) ? $data['attributes'] : [];
44 44
 		
45
-		$user = HydrateUtils::hydrate($attribs, $model, ['login_name', 'password' => function ($v) {
45
+		$user = HydrateUtils::hydrate($attribs, $model, ['login_name', 'password' => function($v) {
46 46
 			return password_hash($v, PASSWORD_BCRYPT);
47 47
 		}, 'given_name', 'family_name', 'display_name', 'email', 'birthday', 'sex']);
48 48
 
Please login to merge, or discard this patch.
src/model/serializer/_GroupSerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 		// attributes
50 50
 		$attribs = isset($data['attributes']) ? $data['attributes'] : [];
51 51
 		
52
-		$model = HydrateUtils::hydrate($attribs, $model, ['login_name', 'password' => function ($v) {
52
+		$model = HydrateUtils::hydrate($attribs, $model, ['login_name', 'password' => function($v) {
53 53
 			return password_hash($v, PASSWORD_BCRYPT);
54 54
 		}, 'given_name', 'family_name', 'display_name', 'email', 'birthday', 'sex']);
55 55
 		
Please login to merge, or discard this patch.