Completed
Push — master ( e65d6e...357eb6 )
by dima
03:55
created
packages/core/src/Models/Task/Base/TaskQuery.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,6 @@
 block discarded – undo
49 49
  * @method     ChildUser findOneByRememberToken(string $remember_token) Return the first ChildUser filtered by the remember_token column
50 50
  * @method     ChildUser findOneByCreatedAt(string $created_at) Return the first ChildUser filtered by the created_at column
51 51
  * @method     ChildUser findOneByUpdatedAt(string $updated_at) Return the first ChildUser filtered by the updated_at column *
52
-
53 52
  * @method     ChildUser requirePk($key, ConnectionInterface $con = null) Return the ChildUser by primary key and throws \Propel\Runtime\Exception\EntityNotFoundException when not found
54 53
  * @method     ChildUser requireOne(ConnectionInterface $con = null) Return the first ChildUser matching the query and throws \Propel\Runtime\Exception\EntityNotFoundException when not found
55 54
  *
Please login to merge, or discard this patch.
packages/core/src/Models/Task/Base/Task.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -668,7 +668,7 @@  discard block
 block discarded – undo
668 668
             throw new PropelException('Cannot insert a value for auto-increment primary key (' . TaskTableMap::COL_ID . ')');
669 669
         }
670 670
 
671
-         // check the columns in natural order for more readable SQL queries
671
+            // check the columns in natural order for more readable SQL queries
672 672
         if ($this->isColumnModified(TaskTableMap::COL_ID)) {
673 673
             $modifiedColumns[':p' . $index++]  = 'id';
674 674
         }
@@ -900,25 +900,25 @@  discard block
 block discarded – undo
900 900
         }
901 901
     }
902 902
 
903
-     /**
904
-     * Populate the current object from a string, using a given parser format
905
-     * <code>
906
-     * $book = new Book();
907
-     * $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}');
908
-     * </code>
909
-     *
910
-     * You can specify the key type of the array by additionally passing one
911
-     * of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME,
912
-     * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
913
-     * The default key type is the column's TableMap::TYPE_PHPNAME.
914
-     *
915
-     * @param mixed $parser A AbstractParser instance,
916
-     *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
917
-     * @param string $data The source data to import from
918
-     * @param string $keyType The type of keys the array uses.
919
-     *
920
-     * @return $this|\Core\Models\Task\Task The current object, for fluid interface
921
-     */
903
+        /**
904
+         * Populate the current object from a string, using a given parser format
905
+         * <code>
906
+         * $book = new Book();
907
+         * $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}');
908
+         * </code>
909
+         *
910
+         * You can specify the key type of the array by additionally passing one
911
+         * of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME,
912
+         * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
913
+         * The default key type is the column's TableMap::TYPE_PHPNAME.
914
+         *
915
+         * @param mixed $parser A AbstractParser instance,
916
+         *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
917
+         * @param string $data The source data to import from
918
+         * @param string $keyType The type of keys the array uses.
919
+         *
920
+         * @return $this|\Core\Models\Task\Task The current object, for fluid interface
921
+         */
922 922
     public function importFrom($parser, $data, $keyType = TableMap::TYPE_PHPNAME)
923 923
     {
924 924
         if (!$parser instanceof AbstractParser) {
Please login to merge, or discard this patch.
packages/core/src/Models/Task/Map/TaskTableMap.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -365,8 +365,8 @@
 block discarded – undo
365 365
      * @throws PropelException Any exceptions caught during processing will be
366 366
      *                         rethrown wrapped into a PropelException.
367 367
      */
368
-     public static function doDelete($values, ConnectionInterface $con = null)
369
-     {
368
+        public static function doDelete($values, ConnectionInterface $con = null)
369
+        {
370 370
         if (null === $con) {
371 371
             $con = Propel::getServiceContainer()->getWriteConnection(UserTableMap::DATABASE_NAME);
372 372
         }
Please login to merge, or discard this patch.
packages/core/src/Models/User/Base/User.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -851,7 +851,7 @@  discard block
 block discarded – undo
851 851
             throw new PropelException('Cannot insert a value for auto-increment primary key (' . UserTableMap::COL_ID . ')');
852 852
         }
853 853
 
854
-         // check the columns in natural order for more readable SQL queries
854
+            // check the columns in natural order for more readable SQL queries
855 855
         if ($this->isColumnModified(UserTableMap::COL_ID)) {
856 856
             $modifiedColumns[':p' . $index++]  = 'id';
857 857
         }
@@ -1147,25 +1147,25 @@  discard block
 block discarded – undo
1147 1147
         }
1148 1148
     }
1149 1149
 
1150
-     /**
1151
-     * Populate the current object from a string, using a given parser format
1152
-     * <code>
1153
-     * $book = new Book();
1154
-     * $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}');
1155
-     * </code>
1156
-     *
1157
-     * You can specify the key type of the array by additionally passing one
1158
-     * of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME,
1159
-     * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
1160
-     * The default key type is the column's TableMap::TYPE_PHPNAME.
1161
-     *
1162
-     * @param mixed $parser A AbstractParser instance,
1163
-     *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
1164
-     * @param string $data The source data to import from
1165
-     * @param string $keyType The type of keys the array uses.
1166
-     *
1167
-     * @return $this|\Core\Models\User\User The current object, for fluid interface
1168
-     */
1150
+        /**
1151
+         * Populate the current object from a string, using a given parser format
1152
+         * <code>
1153
+         * $book = new Book();
1154
+         * $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}');
1155
+         * </code>
1156
+         *
1157
+         * You can specify the key type of the array by additionally passing one
1158
+         * of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME,
1159
+         * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
1160
+         * The default key type is the column's TableMap::TYPE_PHPNAME.
1161
+         *
1162
+         * @param mixed $parser A AbstractParser instance,
1163
+         *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
1164
+         * @param string $data The source data to import from
1165
+         * @param string $keyType The type of keys the array uses.
1166
+         *
1167
+         * @return $this|\Core\Models\User\User The current object, for fluid interface
1168
+         */
1169 1169
     public function importFrom($parser, $data, $keyType = TableMap::TYPE_PHPNAME)
1170 1170
     {
1171 1171
         if (!$parser instanceof AbstractParser) {
Please login to merge, or discard this patch.
packages/core/src/Models/User/Base/UserQuery.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,6 @@
 block discarded – undo
49 49
  * @method     ChildUser findOneByRememberToken(string $remember_token) Return the first ChildUser filtered by the remember_token column
50 50
  * @method     ChildUser findOneByCreatedAt(string $created_at) Return the first ChildUser filtered by the created_at column
51 51
  * @method     ChildUser findOneByUpdatedAt(string $updated_at) Return the first ChildUser filtered by the updated_at column *
52
-
53 52
  * @method     ChildUser requirePk($key, ConnectionInterface $con = null) Return the ChildUser by primary key and throws \Propel\Runtime\Exception\EntityNotFoundException when not found
54 53
  * @method     ChildUser requireOne(ConnectionInterface $con = null) Return the first ChildUser matching the query and throws \Propel\Runtime\Exception\EntityNotFoundException when not found
55 54
  *
Please login to merge, or discard this patch.
packages/core/src/Models/User/Map/UserTableMap.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -365,8 +365,8 @@
 block discarded – undo
365 365
      * @throws PropelException Any exceptions caught during processing will be
366 366
      *                         rethrown wrapped into a PropelException.
367 367
      */
368
-     public static function doDelete($values, ConnectionInterface $con = null)
369
-     {
368
+        public static function doDelete($values, ConnectionInterface $con = null)
369
+        {
370 370
         if (null === $con) {
371 371
             $con = Propel::getServiceContainer()->getWriteConnection(UserTableMap::DATABASE_NAME);
372 372
         }
Please login to merge, or discard this patch.
packages/selfprice/src/Models/Selfprice/Base/SelfpriceQuery.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,6 @@
 block discarded – undo
49 49
  * @method     ChildUser findOneByRememberToken(string $remember_token) Return the first ChildUser filtered by the remember_token column
50 50
  * @method     ChildUser findOneByCreatedAt(string $created_at) Return the first ChildUser filtered by the created_at column
51 51
  * @method     ChildUser findOneByUpdatedAt(string $updated_at) Return the first ChildUser filtered by the updated_at column *
52
-
53 52
  * @method     ChildUser requirePk($key, ConnectionInterface $con = null) Return the ChildUser by primary key and throws \Propel\Runtime\Exception\EntityNotFoundException when not found
54 53
  * @method     ChildUser requireOne(ConnectionInterface $con = null) Return the first ChildUser matching the query and throws \Propel\Runtime\Exception\EntityNotFoundException when not found
55 54
  *
Please login to merge, or discard this patch.
packages/selfprice/src/Models/Selfprice/Base/Selfprice.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
             throw new PropelException('Cannot insert a value for auto-increment primary key (' . SelfpriceTableMap::COL_ID . ')');
695 695
         }
696 696
 
697
-         // check the columns in natural order for more readable SQL queries
697
+            // check the columns in natural order for more readable SQL queries
698 698
         if ($this->isColumnModified(SelfpriceTableMap::COL_ID)) {
699 699
             $modifiedColumns[':p' . $index++]  = 'id';
700 700
         }
@@ -936,25 +936,25 @@  discard block
 block discarded – undo
936 936
         }
937 937
     }
938 938
 
939
-     /**
940
-     * Populate the current object from a string, using a given parser format
941
-     * <code>
942
-     * $book = new Book();
943
-     * $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}');
944
-     * </code>
945
-     *
946
-     * You can specify the key type of the array by additionally passing one
947
-     * of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME,
948
-     * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
949
-     * The default key type is the column's TableMap::TYPE_PHPNAME.
950
-     *
951
-     * @param mixed $parser A AbstractParser instance,
952
-     *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
953
-     * @param string $data The source data to import from
954
-     * @param string $keyType The type of keys the array uses.
955
-     *
956
-     * @return $this|\Selfprice\Models\Selfprice\Selfprice The current object, for fluid interface
957
-     */
939
+        /**
940
+         * Populate the current object from a string, using a given parser format
941
+         * <code>
942
+         * $book = new Book();
943
+         * $book->importFrom('JSON', '{"Id":9012,"Title":"Don Juan","ISBN":"0140422161","Price":12.99,"PublisherId":1234,"AuthorId":5678}');
944
+         * </code>
945
+         *
946
+         * You can specify the key type of the array by additionally passing one
947
+         * of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME,
948
+         * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
949
+         * The default key type is the column's TableMap::TYPE_PHPNAME.
950
+         *
951
+         * @param mixed $parser A AbstractParser instance,
952
+         *                       or a format name ('XML', 'YAML', 'JSON', 'CSV')
953
+         * @param string $data The source data to import from
954
+         * @param string $keyType The type of keys the array uses.
955
+         *
956
+         * @return $this|\Selfprice\Models\Selfprice\Selfprice The current object, for fluid interface
957
+         */
958 958
     public function importFrom($parser, $data, $keyType = TableMap::TYPE_PHPNAME)
959 959
     {
960 960
         if (!$parser instanceof AbstractParser) {
Please login to merge, or discard this patch.
packages/selfprice/src/Models/Selfprice/Map/SelfpriceTableMap.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -365,8 +365,8 @@
 block discarded – undo
365 365
      * @throws PropelException Any exceptions caught during processing will be
366 366
      *                         rethrown wrapped into a PropelException.
367 367
      */
368
-     public static function doDelete($values, ConnectionInterface $con = null)
369
-     {
368
+        public static function doDelete($values, ConnectionInterface $con = null)
369
+        {
370 370
         if (null === $con) {
371 371
             $con = Propel::getServiceContainer()->getWriteConnection(UserTableMap::DATABASE_NAME);
372 372
         }
Please login to merge, or discard this patch.