Completed
Push — master ( 11ee78...8b3cbf )
by Thomas
04:46
created
src/model/LanguageVariantQuery.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 LanguageVariantQuery extends BaseLanguageVariantQuery
18
-{
17
+class LanguageVariantQuery extends BaseLanguageVariantQuery {
19 18
 
20 19
 }
Please login to merge, or discard this patch.
src/model/LocalizationVariant.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 LocalizationVariant extends BaseLocalizationVariant
18
-{
17
+class LocalizationVariant extends BaseLocalizationVariant {
19 18
 
20 19
 }
Please login to merge, or discard this patch.
src/model/LocalizationVariantQuery.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 LocalizationVariantQuery extends BaseLocalizationVariantQuery
18
-{
17
+class LocalizationVariantQuery extends BaseLocalizationVariantQuery {
19 18
 
20 19
 }
Please login to merge, or discard this patch.
src/model/RegionArea.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 RegionArea extends BaseRegionArea
18
-{
17
+class RegionArea extends BaseRegionArea {
19 18
 
20 19
 }
Please login to merge, or discard this patch.
src/model/RegionAreaQuery.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 RegionAreaQuery extends BaseRegionAreaQuery
18
-{
17
+class RegionAreaQuery extends BaseRegionAreaQuery {
19 18
 
20 19
 }
Please login to merge, or discard this patch.
src/model/RegionType.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 RegionType extends BaseRegionType
18
-{
17
+class RegionType extends BaseRegionType {
19 18
 
20 19
 }
Please login to merge, or discard this patch.
src/model/RegionTypeQuery.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 RegionTypeQuery extends BaseRegionTypeQuery
18
-{
17
+class RegionTypeQuery extends BaseRegionTypeQuery {
19 18
 
20 19
 }
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.
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.