Completed
Branch EDTR/master (1c47ab)
by
unknown
44:32 queued 23:08
created
core/domain/services/graphql/data/loaders/PriceTypeLoader.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 class PriceTypeLoader extends AbstractLoader
14 14
 {
15 15
     /**
16
-     * @return EE_Base_Class
16
+     * @return EEM_Price_Type
17 17
      * @throws EE_Error
18 18
      * @throws InvalidArgumentException
19 19
      * @throws InvalidDataTypeException
Please login to merge, or discard this patch.
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -12,31 +12,31 @@
 block discarded – undo
12 12
  */
13 13
 class PriceTypeLoader extends AbstractLoader
14 14
 {
15
-    /**
16
-     * @return EE_Base_Class
17
-     * @throws EE_Error
18
-     * @throws InvalidArgumentException
19
-     * @throws InvalidDataTypeException
20
-     * @throws InvalidInterfaceException
21
-     */
22
-    protected function getQuery()
23
-    {
24
-        return EEM_Price_Type::instance();
25
-    }
15
+	/**
16
+	 * @return EE_Base_Class
17
+	 * @throws EE_Error
18
+	 * @throws InvalidArgumentException
19
+	 * @throws InvalidDataTypeException
20
+	 * @throws InvalidInterfaceException
21
+	 */
22
+	protected function getQuery()
23
+	{
24
+		return EEM_Price_Type::instance();
25
+	}
26 26
 
27
-    /**
28
-     * @param array $keys
29
-     *
30
-     * @return array
31
-     * @throws EE_Error
32
-     * @throws InvalidArgumentException
33
-     * @throws InvalidDataTypeException
34
-     * @throws InvalidInterfaceException
35
-     */
36
-    protected function getWhereParams(array $keys)
37
-    {
38
-        return [
39
-            'PRT_ID' => ['IN', $keys],
40
-        ];
41
-    }
27
+	/**
28
+	 * @param array $keys
29
+	 *
30
+	 * @return array
31
+	 * @throws EE_Error
32
+	 * @throws InvalidArgumentException
33
+	 * @throws InvalidDataTypeException
34
+	 * @throws InvalidInterfaceException
35
+	 */
36
+	protected function getWhereParams(array $keys)
37
+	{
38
+		return [
39
+			'PRT_ID' => ['IN', $keys],
40
+		];
41
+	}
42 42
 }
Please login to merge, or discard this patch.