Completed
Branch dependabot/composer/tijsverkoy... (491ea6)
by
unknown
32:00 queued 25:42
created
core/domain/services/graphql/connections/RootQueryDatetimesConnection.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
     {
39 39
         return [
40 40
             'fromType'           => 'RootQuery',
41
-            'toType'             => $this->namespace . 'Datetime',
42
-            'fromFieldName'      => lcfirst($this->namespace . 'Datetimes'),
41
+            'toType'             => $this->namespace.'Datetime',
42
+            'fromFieldName'      => lcfirst($this->namespace.'Datetimes'),
43 43
             'connectionTypeName' => "{$this->namespace}RootQueryDatetimesConnection",
44 44
             'connectionArgs'     => EventDatetimesConnection::get_connection_args(),
45 45
             'resolve'            => [$this, 'resolveConnection'],
Please login to merge, or discard this patch.
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -18,43 +18,43 @@
 block discarded – undo
18 18
  */
19 19
 class RootQueryDatetimesConnection extends AbstractRootQueryConnection
20 20
 {
21
-    /**
22
-     * DatetimeConnection constructor.
23
-     *
24
-     * @param EEM_Datetime               $model
25
-     */
26
-    public function __construct(EEM_Datetime $model)
27
-    {
28
-        parent::__construct($model);
29
-    }
21
+	/**
22
+	 * DatetimeConnection constructor.
23
+	 *
24
+	 * @param EEM_Datetime               $model
25
+	 */
26
+	public function __construct(EEM_Datetime $model)
27
+	{
28
+		parent::__construct($model);
29
+	}
30 30
 
31 31
 
32
-    /**
33
-     * @return array
34
-     */
35
-    public function config(): array
36
-    {
37
-        return [
38
-            'fromType'           => 'RootQuery',
39
-            'toType'             => $this->namespace . 'Datetime',
40
-            'fromFieldName'      => lcfirst($this->namespace . 'Datetimes'),
41
-            'connectionTypeName' => "{$this->namespace}RootQueryDatetimesConnection",
42
-            'connectionArgs'     => EventDatetimesConnection::get_connection_args(),
43
-            'resolve'            => [$this, 'resolveConnection'],
44
-        ];
45
-    }
32
+	/**
33
+	 * @return array
34
+	 */
35
+	public function config(): array
36
+	{
37
+		return [
38
+			'fromType'           => 'RootQuery',
39
+			'toType'             => $this->namespace . 'Datetime',
40
+			'fromFieldName'      => lcfirst($this->namespace . 'Datetimes'),
41
+			'connectionTypeName' => "{$this->namespace}RootQueryDatetimesConnection",
42
+			'connectionArgs'     => EventDatetimesConnection::get_connection_args(),
43
+			'resolve'            => [$this, 'resolveConnection'],
44
+		];
45
+	}
46 46
 
47 47
 
48
-    /**
49
-     * @param $entity
50
-     * @param $args
51
-     * @param $context
52
-     * @param $info
53
-     * @return DatetimeConnectionResolver
54
-     * @throws Exception
55
-     */
56
-    public function getConnectionResolver($entity, $args, $context, $info): AbstractConnectionResolver
57
-    {
58
-        return new DatetimeConnectionResolver($entity, $args, $context, $info);
59
-    }
48
+	/**
49
+	 * @param $entity
50
+	 * @param $args
51
+	 * @param $context
52
+	 * @param $info
53
+	 * @return DatetimeConnectionResolver
54
+	 * @throws Exception
55
+	 */
56
+	public function getConnectionResolver($entity, $args, $context, $info): AbstractConnectionResolver
57
+	{
58
+		return new DatetimeConnectionResolver($entity, $args, $context, $info);
59
+	}
60 60
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/connections/RootQueryTicketsConnection.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
     {
39 39
         return [
40 40
             'fromType'           => 'RootQuery',
41
-            'toType'             => $this->namespace . 'Ticket',
42
-            'fromFieldName'      => lcfirst($this->namespace) . 'Tickets',
41
+            'toType'             => $this->namespace.'Ticket',
42
+            'fromFieldName'      => lcfirst($this->namespace).'Tickets',
43 43
             'connectionTypeName' => "{$this->namespace}RootQueryTicketsConnection",
44 44
             'connectionArgs'     => DatetimeTicketsConnection::get_connection_args(),
45 45
             'resolve'            => [$this, 'resolveConnection'],
Please login to merge, or discard this patch.
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -18,43 +18,43 @@
 block discarded – undo
18 18
  */
19 19
 class RootQueryTicketsConnection extends AbstractRootQueryConnection
20 20
 {
21
-    /**
22
-     * TicketConnection constructor.
23
-     *
24
-     * @param EEM_Ticket               $model
25
-     */
26
-    public function __construct(EEM_Ticket $model)
27
-    {
28
-        parent::__construct($model);
29
-    }
21
+	/**
22
+	 * TicketConnection constructor.
23
+	 *
24
+	 * @param EEM_Ticket               $model
25
+	 */
26
+	public function __construct(EEM_Ticket $model)
27
+	{
28
+		parent::__construct($model);
29
+	}
30 30
 
31 31
 
32
-    /**
33
-     * @return array
34
-     */
35
-    public function config(): array
36
-    {
37
-        return [
38
-            'fromType'           => 'RootQuery',
39
-            'toType'             => $this->namespace . 'Ticket',
40
-            'fromFieldName'      => lcfirst($this->namespace) . 'Tickets',
41
-            'connectionTypeName' => "{$this->namespace}RootQueryTicketsConnection",
42
-            'connectionArgs'     => DatetimeTicketsConnection::get_connection_args(),
43
-            'resolve'            => [$this, 'resolveConnection'],
44
-        ];
45
-    }
32
+	/**
33
+	 * @return array
34
+	 */
35
+	public function config(): array
36
+	{
37
+		return [
38
+			'fromType'           => 'RootQuery',
39
+			'toType'             => $this->namespace . 'Ticket',
40
+			'fromFieldName'      => lcfirst($this->namespace) . 'Tickets',
41
+			'connectionTypeName' => "{$this->namespace}RootQueryTicketsConnection",
42
+			'connectionArgs'     => DatetimeTicketsConnection::get_connection_args(),
43
+			'resolve'            => [$this, 'resolveConnection'],
44
+		];
45
+	}
46 46
 
47 47
 
48
-    /**
49
-     * @param $entity
50
-     * @param $args
51
-     * @param $context
52
-     * @param $info
53
-     * @return TicketConnectionResolver
54
-     * @throws Exception
55
-     */
56
-    public function getConnectionResolver($entity, $args, $context, $info): AbstractConnectionResolver
57
-    {
58
-        return new TicketConnectionResolver($entity, $args, $context, $info);
59
-    }
48
+	/**
49
+	 * @param $entity
50
+	 * @param $args
51
+	 * @param $context
52
+	 * @param $info
53
+	 * @return TicketConnectionResolver
54
+	 * @throws Exception
55
+	 */
56
+	public function getConnectionResolver($entity, $args, $context, $info): AbstractConnectionResolver
57
+	{
58
+		return new TicketConnectionResolver($entity, $args, $context, $info);
59
+	}
60 60
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/enums/TicketStatusEnum.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function __construct()
23 23
     {
24
-        $this->setName($this->namespace . 'TicketStatusEnum');
24
+        $this->setName($this->namespace.'TicketStatusEnum');
25 25
         $this->setDescription(esc_html__('Whether the ticket is On Sale, Pending, or Expired', 'event_espresso'));
26 26
         parent::__construct();
27 27
     }
Please login to merge, or discard this patch.
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -15,38 +15,38 @@
 block discarded – undo
15 15
  */
16 16
 class TicketStatusEnum extends EnumBase
17 17
 {
18
-    /**
19
-     * TicketStatusEnum constructor.
20
-     */
21
-    public function __construct()
22
-    {
23
-        $this->setName($this->namespace . 'TicketStatusEnum');
24
-        $this->setDescription(esc_html__('Whether the ticket is On Sale, Pending, or Expired', 'event_espresso'));
25
-        parent::__construct();
26
-    }
18
+	/**
19
+	 * TicketStatusEnum constructor.
20
+	 */
21
+	public function __construct()
22
+	{
23
+		$this->setName($this->namespace . 'TicketStatusEnum');
24
+		$this->setDescription(esc_html__('Whether the ticket is On Sale, Pending, or Expired', 'event_espresso'));
25
+		parent::__construct();
26
+	}
27 27
 
28 28
 
29
-    /**
30
-     * @return array
31
-     */
32
-    protected function getValues(): array
33
-    {
34
-        return [
35
-            'SOLD_OUT'     => [
36
-                'value'       => EE_Ticket::sold_out,
37
-            ],
38
-            'EXPIRED'     => [
39
-                'value'       => EE_Ticket::expired,
40
-            ],
41
-            'ARCHIVED'     => [
42
-                'value'       => EE_Ticket::archived,
43
-            ],
44
-            'PENDING'     => [
45
-                'value'       => EE_Ticket::pending,
46
-            ],
47
-            'ONSALE'     => [
48
-                'value'       => EE_Ticket::onsale,
49
-            ],
50
-        ];
51
-    }
29
+	/**
30
+	 * @return array
31
+	 */
32
+	protected function getValues(): array
33
+	{
34
+		return [
35
+			'SOLD_OUT'     => [
36
+				'value'       => EE_Ticket::sold_out,
37
+			],
38
+			'EXPIRED'     => [
39
+				'value'       => EE_Ticket::expired,
40
+			],
41
+			'ARCHIVED'     => [
42
+				'value'       => EE_Ticket::archived,
43
+			],
44
+			'PENDING'     => [
45
+				'value'       => EE_Ticket::pending,
46
+			],
47
+			'ONSALE'     => [
48
+				'value'       => EE_Ticket::onsale,
49
+			],
50
+		];
51
+	}
52 52
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/enums/DatetimeStatusEnum.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function __construct()
23 23
     {
24
-        $this->setName($this->namespace . 'DatetimeStatusEnum');
24
+        $this->setName($this->namespace.'DatetimeStatusEnum');
25 25
         $this->setDescription(esc_html__('Datetime status', 'event_espresso'));
26 26
         parent::__construct();
27 27
     }
Please login to merge, or discard this patch.
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -15,44 +15,44 @@
 block discarded – undo
15 15
  */
16 16
 class DatetimeStatusEnum extends EnumBase
17 17
 {
18
-    /**
19
-     * DatetimeStatusEnum constructor.
20
-     */
21
-    public function __construct()
22
-    {
23
-        $this->setName($this->namespace . 'DatetimeStatusEnum');
24
-        $this->setDescription(esc_html__('Datetime status', 'event_espresso'));
25
-        parent::__construct();
26
-    }
18
+	/**
19
+	 * DatetimeStatusEnum constructor.
20
+	 */
21
+	public function __construct()
22
+	{
23
+		$this->setName($this->namespace . 'DatetimeStatusEnum');
24
+		$this->setDescription(esc_html__('Datetime status', 'event_espresso'));
25
+		parent::__construct();
26
+	}
27 27
 
28 28
 
29
-    /**
30
-     * @return array
31
-     */
32
-    protected function getValues(): array
33
-    {
34
-        return [
35
-            'SOLD_OUT'     => [
36
-                'value'       => EE_Datetime::sold_out,
37
-            ],
38
-            'ACTIVE'     => [
39
-                'value'       => EE_Datetime::active,
40
-            ],
41
-            'UPCOMING'     => [
42
-                'value'       => EE_Datetime::upcoming,
43
-            ],
44
-            'POSTPONED'     => [
45
-                'value'       => EE_Datetime::postponed,
46
-            ],
47
-            'CANCELLED'     => [
48
-                'value'       => EE_Datetime::cancelled,
49
-            ],
50
-            'EXPIRED'     => [
51
-                'value'       => EE_Datetime::expired,
52
-            ],
53
-            'INACTIVE'     => [
54
-                'value'       => EE_Datetime::inactive,
55
-            ],
56
-        ];
57
-    }
29
+	/**
30
+	 * @return array
31
+	 */
32
+	protected function getValues(): array
33
+	{
34
+		return [
35
+			'SOLD_OUT'     => [
36
+				'value'       => EE_Datetime::sold_out,
37
+			],
38
+			'ACTIVE'     => [
39
+				'value'       => EE_Datetime::active,
40
+			],
41
+			'UPCOMING'     => [
42
+				'value'       => EE_Datetime::upcoming,
43
+			],
44
+			'POSTPONED'     => [
45
+				'value'       => EE_Datetime::postponed,
46
+			],
47
+			'CANCELLED'     => [
48
+				'value'       => EE_Datetime::cancelled,
49
+			],
50
+			'EXPIRED'     => [
51
+				'value'       => EE_Datetime::expired,
52
+			],
53
+			'INACTIVE'     => [
54
+				'value'       => EE_Datetime::inactive,
55
+			],
56
+		];
57
+	}
58 58
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/connections/RootQueryPriceTypesConnection.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
     {
39 39
         return [
40 40
             'fromType'           => 'RootQuery',
41
-            'toType'             => $this->namespace . 'PriceType',
42
-            'fromFieldName'      => lcfirst($this->namespace) . 'PriceTypes',
41
+            'toType'             => $this->namespace.'PriceType',
42
+            'fromFieldName'      => lcfirst($this->namespace).'PriceTypes',
43 43
             'connectionTypeName' => "{$this->namespace}RootQueryPriceTypesConnection",
44 44
             'resolve'            => [$this, 'resolveConnection'],
45 45
         ];
Please login to merge, or discard this patch.
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -18,42 +18,42 @@
 block discarded – undo
18 18
  */
19 19
 class RootQueryPriceTypesConnection extends AbstractRootQueryConnection
20 20
 {
21
-    /**
22
-     * PriceTypeConnection constructor.
23
-     *
24
-     * @param EEM_Price_Type               $model
25
-     */
26
-    public function __construct(EEM_Price_Type $model)
27
-    {
28
-        parent::__construct($model);
29
-    }
21
+	/**
22
+	 * PriceTypeConnection constructor.
23
+	 *
24
+	 * @param EEM_Price_Type               $model
25
+	 */
26
+	public function __construct(EEM_Price_Type $model)
27
+	{
28
+		parent::__construct($model);
29
+	}
30 30
 
31 31
 
32
-    /**
33
-     * @return array
34
-     */
35
-    public function config(): array
36
-    {
37
-        return [
38
-            'fromType'           => 'RootQuery',
39
-            'toType'             => $this->namespace . 'PriceType',
40
-            'fromFieldName'      => lcfirst($this->namespace) . 'PriceTypes',
41
-            'connectionTypeName' => "{$this->namespace}RootQueryPriceTypesConnection",
42
-            'resolve'            => [$this, 'resolveConnection'],
43
-        ];
44
-    }
32
+	/**
33
+	 * @return array
34
+	 */
35
+	public function config(): array
36
+	{
37
+		return [
38
+			'fromType'           => 'RootQuery',
39
+			'toType'             => $this->namespace . 'PriceType',
40
+			'fromFieldName'      => lcfirst($this->namespace) . 'PriceTypes',
41
+			'connectionTypeName' => "{$this->namespace}RootQueryPriceTypesConnection",
42
+			'resolve'            => [$this, 'resolveConnection'],
43
+		];
44
+	}
45 45
 
46 46
 
47
-    /**
48
-     * @param $entity
49
-     * @param $args
50
-     * @param $context
51
-     * @param $info
52
-     * @return PriceTypeConnectionResolver
53
-     * @throws Exception
54
-     */
55
-    public function getConnectionResolver($entity, $args, $context, $info): AbstractConnectionResolver
56
-    {
57
-        return new PriceTypeConnectionResolver($entity, $args, $context, $info);
58
-    }
47
+	/**
48
+	 * @param $entity
49
+	 * @param $args
50
+	 * @param $context
51
+	 * @param $info
52
+	 * @return PriceTypeConnectionResolver
53
+	 * @throws Exception
54
+	 */
55
+	public function getConnectionResolver($entity, $args, $context, $info): AbstractConnectionResolver
56
+	{
57
+		return new PriceTypeConnectionResolver($entity, $args, $context, $info);
58
+	}
59 59
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/data/loaders/AbstractLoader.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -67,10 +67,10 @@
 block discarded – undo
67 67
          * the model layer.
68 68
          */
69 69
         foreach ($keys as $key) {
70
-            if (isset($result[ $key ])) {
71
-                $loadedItems[ $key ] = $result[ $key ];
70
+            if (isset($result[$key])) {
71
+                $loadedItems[$key] = $result[$key];
72 72
             } else {
73
-                $loadedItems[ $key ] = null;
73
+                $loadedItems[$key] = null;
74 74
             }
75 75
         }
76 76
         return $loadedItems;
Please login to merge, or discard this patch.
Indentation   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -15,65 +15,65 @@
 block discarded – undo
15 15
  */
16 16
 abstract class AbstractLoader extends AbstractDataLoader
17 17
 {
18
-    protected $primaryKey;
18
+	protected $primaryKey;
19 19
 
20
-    /**
21
-     * @return EEM_Base
22
-     * @throws EE_Error
23
-     * @throws InvalidArgumentException
24
-     * @throws InvalidDataTypeException
25
-     * @throws InvalidInterfaceException
26
-     */
27
-    abstract protected function getQuery(): EEM_Base;
20
+	/**
21
+	 * @return EEM_Base
22
+	 * @throws EE_Error
23
+	 * @throws InvalidArgumentException
24
+	 * @throws InvalidDataTypeException
25
+	 * @throws InvalidInterfaceException
26
+	 */
27
+	abstract protected function getQuery(): EEM_Base;
28 28
 
29
-    /**
30
-     * @param array $keys
31
-     * @return array
32
-     */
33
-    abstract protected function getWhereParams(array $keys): array;
29
+	/**
30
+	 * @param array $keys
31
+	 * @return array
32
+	 */
33
+	abstract protected function getWhereParams(array $keys): array;
34 34
 
35
-    /**
36
-     * Given array of keys, loads and returns a map consisting of keys from `keys` array and loaded
37
-     * values
38
-     *
39
-     * Note that order of returned values must match exactly the order of keys.
40
-     * If some entry is not available for given key - it must include null for the missing key.
41
-     *
42
-     * For example:
43
-     * loadKeys(['a', 'b', 'c']) -> ['a' => 'value1, 'b' => null, 'c' => 'value3']
44
-     *
45
-     * @param array $keys
46
-     *
47
-     * @return array
48
-     * @throws Exception
49
-     */
50
-    public function loadKeys(array $keys): array
51
-    {
52
-        if (empty($keys)) {
53
-            return $keys;
54
-        }
35
+	/**
36
+	 * Given array of keys, loads and returns a map consisting of keys from `keys` array and loaded
37
+	 * values
38
+	 *
39
+	 * Note that order of returned values must match exactly the order of keys.
40
+	 * If some entry is not available for given key - it must include null for the missing key.
41
+	 *
42
+	 * For example:
43
+	 * loadKeys(['a', 'b', 'c']) -> ['a' => 'value1, 'b' => null, 'c' => 'value3']
44
+	 *
45
+	 * @param array $keys
46
+	 *
47
+	 * @return array
48
+	 * @throws Exception
49
+	 */
50
+	public function loadKeys(array $keys): array
51
+	{
52
+		if (empty($keys)) {
53
+			return $keys;
54
+		}
55 55
 
56
-        $args = [
57
-            $this->getWhereParams($keys),
58
-        ];
56
+		$args = [
57
+			$this->getWhereParams($keys),
58
+		];
59 59
 
60
-        $query = $this->getQuery();
61
-        $result = $query->get_all($args);
60
+		$query = $this->getQuery();
61
+		$result = $query->get_all($args);
62 62
 
63
-        $loadedItems = [];
63
+		$loadedItems = [];
64 64
 
65
-        /**
66
-         * Loop over the items and return an array of loaded items,
67
-         * where the key is the ID and the value is the Object passed through
68
-         * the model layer.
69
-         */
70
-        foreach ($keys as $key) {
71
-            if (isset($result[ $key ])) {
72
-                $loadedItems[ $key ] = $result[ $key ];
73
-            } else {
74
-                $loadedItems[ $key ] = null;
75
-            }
76
-        }
77
-        return $loadedItems;
78
-    }
65
+		/**
66
+		 * Loop over the items and return an array of loaded items,
67
+		 * where the key is the ID and the value is the Object passed through
68
+		 * the model layer.
69
+		 */
70
+		foreach ($keys as $key) {
71
+			if (isset($result[ $key ])) {
72
+				$loadedItems[ $key ] = $result[ $key ];
73
+			} else {
74
+				$loadedItems[ $key ] = null;
75
+			}
76
+		}
77
+		return $loadedItems;
78
+	}
79 79
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/enums/ModelNameEnum.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function __construct()
24 24
     {
25
-        $this->setName($this->namespace . 'ModelNameEnum');
25
+        $this->setName($this->namespace.'ModelNameEnum');
26 26
         $this->setDescription(esc_html__('Entity model name', 'event_espresso'));
27 27
         parent::__construct();
28 28
     }
Please login to merge, or discard this patch.
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -19,34 +19,34 @@
 block discarded – undo
19 19
  */
20 20
 class ModelNameEnum extends EnumBase
21 21
 {
22
-    /**
23
-     * ModelNameEnum constructor.
24
-     */
25
-    public function __construct()
26
-    {
27
-        $this->setName($this->namespace . 'ModelNameEnum');
28
-        $this->setDescription(esc_html__('Entity model name', 'event_espresso'));
29
-        parent::__construct();
30
-    }
22
+	/**
23
+	 * ModelNameEnum constructor.
24
+	 */
25
+	public function __construct()
26
+	{
27
+		$this->setName($this->namespace . 'ModelNameEnum');
28
+		$this->setDescription(esc_html__('Entity model name', 'event_espresso'));
29
+		parent::__construct();
30
+	}
31 31
 
32 32
 
33
-    /**
34
-     * @return array
35
-     * @throws EE_Error
36
-     * @throws ReflectionException
37
-     */
38
-    protected function getValues(): array
39
-    {
40
-        return [
41
-            'DATETIME' => [
42
-                'value' => EEM_Datetime::instance()->item_name(),
43
-            ],
44
-            'TICKET'   => [
45
-                'value' => EEM_Ticket::instance()->item_name(),
46
-            ],
47
-            'PRICE'    => [
48
-                'value' => EEM_Price::instance()->item_name(),
49
-            ],
50
-        ];
51
-    }
33
+	/**
34
+	 * @return array
35
+	 * @throws EE_Error
36
+	 * @throws ReflectionException
37
+	 */
38
+	protected function getValues(): array
39
+	{
40
+		return [
41
+			'DATETIME' => [
42
+				'value' => EEM_Datetime::instance()->item_name(),
43
+			],
44
+			'TICKET'   => [
45
+				'value' => EEM_Ticket::instance()->item_name(),
46
+			],
47
+			'PRICE'    => [
48
+				'value' => EEM_Price::instance()->item_name(),
49
+			],
50
+		];
51
+	}
52 52
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/enums/AttendeesConnectionOrderbyEnum.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     public function __construct()
22 22
     {
23
-        $this->setName($this->namespace . 'AttendeesConnectionOrderbyEnum');
23
+        $this->setName($this->namespace.'AttendeesConnectionOrderbyEnum');
24 24
         $this->setDescription(esc_html__('Field to order the connection by', 'event_espresso'));
25 25
         parent::__construct();
26 26
     }
Please login to merge, or discard this patch.
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -14,35 +14,35 @@
 block discarded – undo
14 14
  */
15 15
 class AttendeesConnectionOrderbyEnum extends EnumBase
16 16
 {
17
-    /**
18
-     * AttendeesConnectionOrderbyEnum constructor.
19
-     */
20
-    public function __construct()
21
-    {
22
-        $this->setName($this->namespace . 'AttendeesConnectionOrderbyEnum');
23
-        $this->setDescription(esc_html__('Field to order the connection by', 'event_espresso'));
24
-        parent::__construct();
25
-    }
17
+	/**
18
+	 * AttendeesConnectionOrderbyEnum constructor.
19
+	 */
20
+	public function __construct()
21
+	{
22
+		$this->setName($this->namespace . 'AttendeesConnectionOrderbyEnum');
23
+		$this->setDescription(esc_html__('Field to order the connection by', 'event_espresso'));
24
+		parent::__construct();
25
+	}
26 26
 
27 27
 
28
-    /**
29
-     * @return array
30
-     */
31
-    protected function getValues(): array
32
-    {
33
-        return [
34
-            'ID'     => [
35
-                'value'       => 'ATT_ID',
36
-                'description' => esc_html__('Order by ID', 'event_espresso'),
37
-            ],
38
-            'LAST_NAME'     => [
39
-                'value'       => 'ATT_lname',
40
-                'description' => esc_html__('Order by last name', 'event_espresso'),
41
-            ],
42
-            'FIRST_NAME'     => [
43
-                'value'       => 'ATT_fname',
44
-                'description' => esc_html__('Order by first name', 'event_espresso'),
45
-            ],
46
-        ];
47
-    }
28
+	/**
29
+	 * @return array
30
+	 */
31
+	protected function getValues(): array
32
+	{
33
+		return [
34
+			'ID'     => [
35
+				'value'       => 'ATT_ID',
36
+				'description' => esc_html__('Order by ID', 'event_espresso'),
37
+			],
38
+			'LAST_NAME'     => [
39
+				'value'       => 'ATT_lname',
40
+				'description' => esc_html__('Order by last name', 'event_espresso'),
41
+			],
42
+			'FIRST_NAME'     => [
43
+				'value'       => 'ATT_fname',
44
+				'description' => esc_html__('Order by first name', 'event_espresso'),
45
+			],
46
+		];
47
+	}
48 48
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/connections/RootQueryAttendeesConnection.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
     {
39 39
         return [
40 40
             'fromType'           => 'RootQuery',
41
-            'toType'             => $this->namespace . 'Attendee',
42
-            'fromFieldName'      => lcfirst($this->namespace) . 'Attendees',
41
+            'toType'             => $this->namespace.'Attendee',
42
+            'fromFieldName'      => lcfirst($this->namespace).'Attendees',
43 43
             'connectionTypeName' => "{$this->namespace}RootQueryAttendeesConnection",
44 44
             'connectionArgs'     => self::get_connection_args(),
45 45
             'resolve'            => [$this, 'resolveConnection'],
Please login to merge, or discard this patch.
Indentation   +118 added lines, -118 removed lines patch added patch discarded remove patch
@@ -18,128 +18,128 @@
 block discarded – undo
18 18
  */
19 19
 class RootQueryAttendeesConnection extends AbstractRootQueryConnection
20 20
 {
21
-    /**
22
-     * AttendeeConnection constructor.
23
-     *
24
-     * @param EEM_Attendee               $model
25
-     */
26
-    public function __construct(EEM_Attendee $model)
27
-    {
28
-        parent::__construct($model);
29
-    }
21
+	/**
22
+	 * AttendeeConnection constructor.
23
+	 *
24
+	 * @param EEM_Attendee               $model
25
+	 */
26
+	public function __construct(EEM_Attendee $model)
27
+	{
28
+		parent::__construct($model);
29
+	}
30 30
 
31 31
 
32
-    /**
33
-     * @return array
34
-     */
35
-    public function config(): array
36
-    {
37
-        return [
38
-            'fromType'           => 'RootQuery',
39
-            'toType'             => $this->namespace . 'Attendee',
40
-            'fromFieldName'      => lcfirst($this->namespace) . 'Attendees',
41
-            'connectionTypeName' => "{$this->namespace}RootQueryAttendeesConnection",
42
-            'connectionArgs'     => self::get_connection_args(),
43
-            'resolve'            => [$this, 'resolveConnection'],
44
-        ];
45
-    }
32
+	/**
33
+	 * @return array
34
+	 */
35
+	public function config(): array
36
+	{
37
+		return [
38
+			'fromType'           => 'RootQuery',
39
+			'toType'             => $this->namespace . 'Attendee',
40
+			'fromFieldName'      => lcfirst($this->namespace) . 'Attendees',
41
+			'connectionTypeName' => "{$this->namespace}RootQueryAttendeesConnection",
42
+			'connectionArgs'     => self::get_connection_args(),
43
+			'resolve'            => [$this, 'resolveConnection'],
44
+		];
45
+	}
46 46
 
47 47
 
48
-    /**
49
-     * @param $entity
50
-     * @param $args
51
-     * @param $context
52
-     * @param $info
53
-     * @return AttendeeConnectionResolver
54
-     * @throws Exception
55
-     */
56
-    public function getConnectionResolver($entity, $args, $context, $info): AbstractConnectionResolver
57
-    {
58
-        return new AttendeeConnectionResolver($entity, $args, $context, $info);
59
-    }
48
+	/**
49
+	 * @param $entity
50
+	 * @param $args
51
+	 * @param $context
52
+	 * @param $info
53
+	 * @return AttendeeConnectionResolver
54
+	 * @throws Exception
55
+	 */
56
+	public function getConnectionResolver($entity, $args, $context, $info): AbstractConnectionResolver
57
+	{
58
+		return new AttendeeConnectionResolver($entity, $args, $context, $info);
59
+	}
60 60
 
61
-    /**
62
-     * Given an optional array of args, this returns the args to be used in the connection
63
-     *
64
-     * @param array $args The args to modify the defaults
65
-     * @return array
66
-     */
67
-    // phpcs:ignore PSR1.Methods.CamelCapsMethodName.NotCamelCaps
68
-    public static function get_connection_args(array $args = []): array
69
-    {
70
-        $newArgs = [
71
-            'datetime' => [
72
-                'type'        => 'ID',
73
-                'description' => esc_html__(
74
-                    'Globally unique datetime ID to get the attendees for.',
75
-                    'event_espresso'
76
-                ),
77
-            ],
78
-            'datetimeIn' => [
79
-                'type'        => ['list_of' => 'ID'],
80
-                'description' => esc_html__(
81
-                    'Globally unique datetime IDs to get the attendees for.',
82
-                    'event_espresso'
83
-                ),
84
-            ],
85
-            'event' => [
86
-                'type'        => 'ID',
87
-                'description' => esc_html__(
88
-                    'Globally unique event ID to get the attendees for.',
89
-                    'event_espresso'
90
-                ),
91
-            ],
92
-            'eventIn' => [
93
-                'type'        => ['list_of' => 'ID'],
94
-                'description' => esc_html__(
95
-                    'Globally unique event IDs to get the attendees for.',
96
-                    'event_espresso'
97
-                ),
98
-            ],
99
-            'orderby'      => [
100
-                'type'        => ['list_of' => 'EspressoAttendeesConnectionOrderbyInput'],
101
-                'description' => esc_html__('What parameter to use to order the objects by.', 'event_espresso'),
102
-            ],
103
-            'regTicket' => [
104
-                'type'        => 'ID',
105
-                'description' => esc_html__(
106
-                    'Globally unique registration ticket ID to get the attendees for.',
107
-                    'event_espresso'
108
-                ),
109
-            ],
110
-            'regTicketIn' => [
111
-                'type'        => ['list_of' => 'ID'],
112
-                'description' => esc_html__(
113
-                    'Globally unique registration ticket IDs to get the attendees for.',
114
-                    'event_espresso'
115
-                ),
116
-            ],
117
-            'regTicketId' => [
118
-                'type'        => 'Int',
119
-                'description' => esc_html__('Registration ticket ID to get the attendees for.', 'event_espresso'),
120
-            ],
121
-            'regTicketIdIn' => [
122
-                'type'        => ['list_of' => 'Int'],
123
-                'description' => esc_html__('Registration ticket IDs to get the attendees for.', 'event_espresso'),
124
-            ],
125
-            'regStatus' => [
126
-                'type'        => 'EspressoRegistrationStatusEnum',
127
-                'description' => esc_html__('Limit attendees to registration status.', 'event_espresso'),
128
-            ],
129
-            'search' => [
130
-                'type'        => 'String',
131
-                'description' => esc_html__('The search keywords', 'event_espresso'),
132
-            ],
133
-        ];
61
+	/**
62
+	 * Given an optional array of args, this returns the args to be used in the connection
63
+	 *
64
+	 * @param array $args The args to modify the defaults
65
+	 * @return array
66
+	 */
67
+	// phpcs:ignore PSR1.Methods.CamelCapsMethodName.NotCamelCaps
68
+	public static function get_connection_args(array $args = []): array
69
+	{
70
+		$newArgs = [
71
+			'datetime' => [
72
+				'type'        => 'ID',
73
+				'description' => esc_html__(
74
+					'Globally unique datetime ID to get the attendees for.',
75
+					'event_espresso'
76
+				),
77
+			],
78
+			'datetimeIn' => [
79
+				'type'        => ['list_of' => 'ID'],
80
+				'description' => esc_html__(
81
+					'Globally unique datetime IDs to get the attendees for.',
82
+					'event_espresso'
83
+				),
84
+			],
85
+			'event' => [
86
+				'type'        => 'ID',
87
+				'description' => esc_html__(
88
+					'Globally unique event ID to get the attendees for.',
89
+					'event_espresso'
90
+				),
91
+			],
92
+			'eventIn' => [
93
+				'type'        => ['list_of' => 'ID'],
94
+				'description' => esc_html__(
95
+					'Globally unique event IDs to get the attendees for.',
96
+					'event_espresso'
97
+				),
98
+			],
99
+			'orderby'      => [
100
+				'type'        => ['list_of' => 'EspressoAttendeesConnectionOrderbyInput'],
101
+				'description' => esc_html__('What parameter to use to order the objects by.', 'event_espresso'),
102
+			],
103
+			'regTicket' => [
104
+				'type'        => 'ID',
105
+				'description' => esc_html__(
106
+					'Globally unique registration ticket ID to get the attendees for.',
107
+					'event_espresso'
108
+				),
109
+			],
110
+			'regTicketIn' => [
111
+				'type'        => ['list_of' => 'ID'],
112
+				'description' => esc_html__(
113
+					'Globally unique registration ticket IDs to get the attendees for.',
114
+					'event_espresso'
115
+				),
116
+			],
117
+			'regTicketId' => [
118
+				'type'        => 'Int',
119
+				'description' => esc_html__('Registration ticket ID to get the attendees for.', 'event_espresso'),
120
+			],
121
+			'regTicketIdIn' => [
122
+				'type'        => ['list_of' => 'Int'],
123
+				'description' => esc_html__('Registration ticket IDs to get the attendees for.', 'event_espresso'),
124
+			],
125
+			'regStatus' => [
126
+				'type'        => 'EspressoRegistrationStatusEnum',
127
+				'description' => esc_html__('Limit attendees to registration status.', 'event_espresso'),
128
+			],
129
+			'search' => [
130
+				'type'        => 'String',
131
+				'description' => esc_html__('The search keywords', 'event_espresso'),
132
+			],
133
+		];
134 134
 
135
-        $newArgs = apply_filters(
136
-            'FHEE__EventEspresso_core_domain_services_graphql_connections__attendee_args',
137
-            $newArgs,
138
-            $args
139
-        );
140
-        return array_merge(
141
-            $newArgs,
142
-            $args
143
-        );
144
-    }
135
+		$newArgs = apply_filters(
136
+			'FHEE__EventEspresso_core_domain_services_graphql_connections__attendee_args',
137
+			$newArgs,
138
+			$args
139
+		);
140
+		return array_merge(
141
+			$newArgs,
142
+			$args
143
+		);
144
+	}
145 145
 }
Please login to merge, or discard this patch.