Completed
Branch decaf-fixes/main (f15b58)
by
unknown
02:42 queued 15s
created
modules/ticket_selector/TicketSelector.php 2 patches
Indentation   +103 added lines, -103 removed lines patch added patch discarded remove patch
@@ -12,107 +12,107 @@
 block discarded – undo
12 12
 abstract class TicketSelector
13 13
 {
14 14
 
15
-    /**
16
-     * @var \EE_Event $event
17
-     */
18
-    protected $event;
19
-
20
-    /**
21
-     * @var \EE_Ticket[] $tickets
22
-     */
23
-    protected $tickets;
24
-
25
-    /**
26
-     * @var int max_attendees
27
-     */
28
-    protected $max_attendees;
29
-
30
-    /**
31
-     * @var array $template_args
32
-     */
33
-    protected $template_args;
34
-
35
-
36
-    /**
37
-     * TicketSelectorSimple constructor.
38
-     *
39
-     * @param \EE_Event    $event
40
-     * @param \EE_Ticket[] $tickets
41
-     * @param int          $max_attendees
42
-     * @param array        $template_args
43
-     * @throws \EE_Error
44
-     */
45
-    public function __construct(\EE_Event $event, array $tickets, $max_attendees, array $template_args)
46
-    {
47
-        $this->event = $event;
48
-        $this->tickets = $tickets;
49
-        $this->max_attendees = $max_attendees;
50
-        $this->template_args = $template_args;
51
-        $this->template_args['hidden_inputs'] = $this->getHiddenInputs();
52
-        $this->addTemplateArgs();
53
-    }
54
-
55
-
56
-    /**
57
-     * sets any and all template args that are required for this Ticket Selector
58
-     *
59
-     * @return void
60
-     */
61
-    abstract protected function addTemplateArgs();
62
-
63
-
64
-    /**
65
-     * loadTicketSelectorTemplate
66
-     *
67
-     * @return string
68
-     */
69
-    protected function loadTicketSelectorTemplate()
70
-    {
71
-        try {
72
-            return \EEH_Template::locate_template(
73
-                apply_filters(
74
-                    'FHEE__EE_Ticket_Selector__display_ticket_selector__template_path',
75
-                    $this->template_args['template_path'],
76
-                    $this->event
77
-                ),
78
-                $this->template_args
79
-            );
80
-        } catch (\Exception $e) {
81
-            \EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__);
82
-        }
83
-        return '';
84
-    }
85
-
86
-
87
-    /**
88
-     * The __toString method allows a class to decide how it will react when it is converted to a string.
89
-     *
90
-     * @return string
91
-     * @link http://php.net/manual/en/language.oop5.magic.php#language.oop5.magic.tostring
92
-     */
93
-    public function __toString()
94
-    {
95
-        return $this->loadTicketSelectorTemplate();
96
-    }
97
-
98
-
99
-    /**
100
-     * getHiddenInputs
101
-     *
102
-     * @return string
103
-     * @throws \EE_Error
104
-     */
105
-    public function getHiddenInputs()
106
-    {
107
-        // $rows = count($this->tickets);
108
-        $html = '<input type="hidden" name="noheader" value="true"/>';
109
-        $html .= '<input type="hidden" name="tkt-slctr-return-url-' . $this->event->ID() . '"';
110
-        $html .= ' value="' . \EEH_URL::current_url() . $this->template_args['anchor_id'] . '"/>';
111
-        $html .= '<input type="hidden" name="tkt-slctr-rows-' . $this->event->ID();
112
-        $html .= '" value="' . count($this->tickets) . '"/>';
113
-        $html .= '<input type="hidden" name="tkt-slctr-max-atndz-' . $this->event->ID();
114
-        $html .= '" value="' . $this->template_args['max_atndz'] . '"/>';
115
-        $html .= '<input type="hidden" name="tkt-slctr-event-id" value="' . $this->event->ID() . '"/>';
116
-        return $html;
117
-    }
15
+	/**
16
+	 * @var \EE_Event $event
17
+	 */
18
+	protected $event;
19
+
20
+	/**
21
+	 * @var \EE_Ticket[] $tickets
22
+	 */
23
+	protected $tickets;
24
+
25
+	/**
26
+	 * @var int max_attendees
27
+	 */
28
+	protected $max_attendees;
29
+
30
+	/**
31
+	 * @var array $template_args
32
+	 */
33
+	protected $template_args;
34
+
35
+
36
+	/**
37
+	 * TicketSelectorSimple constructor.
38
+	 *
39
+	 * @param \EE_Event    $event
40
+	 * @param \EE_Ticket[] $tickets
41
+	 * @param int          $max_attendees
42
+	 * @param array        $template_args
43
+	 * @throws \EE_Error
44
+	 */
45
+	public function __construct(\EE_Event $event, array $tickets, $max_attendees, array $template_args)
46
+	{
47
+		$this->event = $event;
48
+		$this->tickets = $tickets;
49
+		$this->max_attendees = $max_attendees;
50
+		$this->template_args = $template_args;
51
+		$this->template_args['hidden_inputs'] = $this->getHiddenInputs();
52
+		$this->addTemplateArgs();
53
+	}
54
+
55
+
56
+	/**
57
+	 * sets any and all template args that are required for this Ticket Selector
58
+	 *
59
+	 * @return void
60
+	 */
61
+	abstract protected function addTemplateArgs();
62
+
63
+
64
+	/**
65
+	 * loadTicketSelectorTemplate
66
+	 *
67
+	 * @return string
68
+	 */
69
+	protected function loadTicketSelectorTemplate()
70
+	{
71
+		try {
72
+			return \EEH_Template::locate_template(
73
+				apply_filters(
74
+					'FHEE__EE_Ticket_Selector__display_ticket_selector__template_path',
75
+					$this->template_args['template_path'],
76
+					$this->event
77
+				),
78
+				$this->template_args
79
+			);
80
+		} catch (\Exception $e) {
81
+			\EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__);
82
+		}
83
+		return '';
84
+	}
85
+
86
+
87
+	/**
88
+	 * The __toString method allows a class to decide how it will react when it is converted to a string.
89
+	 *
90
+	 * @return string
91
+	 * @link http://php.net/manual/en/language.oop5.magic.php#language.oop5.magic.tostring
92
+	 */
93
+	public function __toString()
94
+	{
95
+		return $this->loadTicketSelectorTemplate();
96
+	}
97
+
98
+
99
+	/**
100
+	 * getHiddenInputs
101
+	 *
102
+	 * @return string
103
+	 * @throws \EE_Error
104
+	 */
105
+	public function getHiddenInputs()
106
+	{
107
+		// $rows = count($this->tickets);
108
+		$html = '<input type="hidden" name="noheader" value="true"/>';
109
+		$html .= '<input type="hidden" name="tkt-slctr-return-url-' . $this->event->ID() . '"';
110
+		$html .= ' value="' . \EEH_URL::current_url() . $this->template_args['anchor_id'] . '"/>';
111
+		$html .= '<input type="hidden" name="tkt-slctr-rows-' . $this->event->ID();
112
+		$html .= '" value="' . count($this->tickets) . '"/>';
113
+		$html .= '<input type="hidden" name="tkt-slctr-max-atndz-' . $this->event->ID();
114
+		$html .= '" value="' . $this->template_args['max_atndz'] . '"/>';
115
+		$html .= '<input type="hidden" name="tkt-slctr-event-id" value="' . $this->event->ID() . '"/>';
116
+		return $html;
117
+	}
118 118
 }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -106,13 +106,13 @@
 block discarded – undo
106 106
     {
107 107
         // $rows = count($this->tickets);
108 108
         $html = '<input type="hidden" name="noheader" value="true"/>';
109
-        $html .= '<input type="hidden" name="tkt-slctr-return-url-' . $this->event->ID() . '"';
110
-        $html .= ' value="' . \EEH_URL::current_url() . $this->template_args['anchor_id'] . '"/>';
111
-        $html .= '<input type="hidden" name="tkt-slctr-rows-' . $this->event->ID();
112
-        $html .= '" value="' . count($this->tickets) . '"/>';
113
-        $html .= '<input type="hidden" name="tkt-slctr-max-atndz-' . $this->event->ID();
114
-        $html .= '" value="' . $this->template_args['max_atndz'] . '"/>';
115
-        $html .= '<input type="hidden" name="tkt-slctr-event-id" value="' . $this->event->ID() . '"/>';
109
+        $html .= '<input type="hidden" name="tkt-slctr-return-url-'.$this->event->ID().'"';
110
+        $html .= ' value="'.\EEH_URL::current_url().$this->template_args['anchor_id'].'"/>';
111
+        $html .= '<input type="hidden" name="tkt-slctr-rows-'.$this->event->ID();
112
+        $html .= '" value="'.count($this->tickets).'"/>';
113
+        $html .= '<input type="hidden" name="tkt-slctr-max-atndz-'.$this->event->ID();
114
+        $html .= '" value="'.$this->template_args['max_atndz'].'"/>';
115
+        $html .= '<input type="hidden" name="tkt-slctr-event-id" value="'.$this->event->ID().'"/>';
116 116
         return $html;
117 117
     }
118 118
 }
Please login to merge, or discard this patch.
caffeinated/modules/recaptcha_invisible/RecaptchaFactory.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -19,35 +19,35 @@
 block discarded – undo
19 19
 class RecaptchaFactory implements FactoryInterface
20 20
 {
21 21
 
22
-    /**
23
-     * @param array $arguments
24
-     * @return InvisibleRecaptcha
25
-     * @throws InvalidDataTypeException
26
-     * @throws InvalidInterfaceException
27
-     * @throws InvalidArgumentException
28
-     */
29
-    public static function create($arguments = array())
30
-    {
31
-        return LoaderFactory::getLoader()->getShared(
32
-            'EventEspresso\caffeinated\modules\recaptcha_invisible\InvisibleRecaptcha',
33
-            $arguments
34
-        );
35
-    }
22
+	/**
23
+	 * @param array $arguments
24
+	 * @return InvisibleRecaptcha
25
+	 * @throws InvalidDataTypeException
26
+	 * @throws InvalidInterfaceException
27
+	 * @throws InvalidArgumentException
28
+	 */
29
+	public static function create($arguments = array())
30
+	{
31
+		return LoaderFactory::getLoader()->getShared(
32
+			'EventEspresso\caffeinated\modules\recaptcha_invisible\InvisibleRecaptcha',
33
+			$arguments
34
+		);
35
+	}
36 36
 
37 37
 
38 38
 
39
-    /**
40
-     * @param array $arguments
41
-     * @return RecaptchaAdminSettings
42
-     * @throws InvalidDataTypeException
43
-     * @throws InvalidInterfaceException
44
-     * @throws InvalidArgumentException
45
-     */
46
-    public static function getAdminModule($arguments = array())
47
-    {
48
-        return LoaderFactory::getLoader()->getShared(
49
-            'EventEspresso\caffeinated\modules\recaptcha_invisible\RecaptchaAdminSettings',
50
-            $arguments
51
-        );
52
-    }
39
+	/**
40
+	 * @param array $arguments
41
+	 * @return RecaptchaAdminSettings
42
+	 * @throws InvalidDataTypeException
43
+	 * @throws InvalidInterfaceException
44
+	 * @throws InvalidArgumentException
45
+	 */
46
+	public static function getAdminModule($arguments = array())
47
+	{
48
+		return LoaderFactory::getLoader()->getShared(
49
+			'EventEspresso\caffeinated\modules\recaptcha_invisible\RecaptchaAdminSettings',
50
+			$arguments
51
+		);
52
+	}
53 53
 }
Please login to merge, or discard this patch.
caffeinated/modules/recaptcha/ReCaptcha/RequestMethod/SocketPost.php 2 patches
Indentation   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -33,87 +33,87 @@
 block discarded – undo
33 33
  */
34 34
 class SocketPost implements RequestMethod
35 35
 {
36
-    /**
37
-     * reCAPTCHA service host.
38
-     *
39
-     * @const string
40
-     */
41
-    const RECAPTCHA_HOST = 'www.google.com';
42
-
43
-    /**
44
-     * @const string reCAPTCHA service path
45
-     */
46
-    const SITE_VERIFY_PATH = '/recaptcha/api/siteverify';
47
-
48
-    /**
49
-     * @const string Bad request error
50
-     */
51
-    const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}';
52
-
53
-    /**
54
-     * @const string Bad response error
55
-     */
56
-    const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}';
57
-
58
-    /**
59
-     * Socket to the reCAPTCHA service
60
-     *
61
-     * @var Socket
62
-     */
63
-    private $socket;
64
-
65
-    /**
66
-     * Constructor
67
-     *
68
-     * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing
69
-     */
70
-    public function __construct(Socket $socket = null)
71
-    {
72
-        if (! is_null($socket)) {
73
-            $this->socket = $socket;
74
-        } else {
75
-            $this->socket = new Socket();
76
-        }
77
-    }
78
-
79
-    /**
80
-     * Submit the POST request with the specified parameters.
81
-     *
82
-     * @param RequestParameters $params Request parameters
83
-     * @return string Body of the reCAPTCHA response
84
-     */
85
-    public function submit(RequestParameters $params)
86
-    {
87
-        $errno = 0;
88
-        $errstr = '';
89
-
90
-        if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) {
91
-            $content = $params->toQueryString();
92
-
93
-            $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n";
94
-            $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n";
95
-            $request .= "Content-Type: application/x-www-form-urlencoded\r\n";
96
-            $request .= "Content-length: " . strlen($content) . "\r\n";
97
-            $request .= "Connection: close\r\n\r\n";
98
-            $request .= $content . "\r\n\r\n";
99
-
100
-            $this->socket->fwrite($request);
101
-            $response = '';
102
-
103
-            while (! $this->socket->feof()) {
104
-                $response .= $this->socket->fgets(4096);
105
-            }
106
-
107
-            $this->socket->fclose();
108
-
109
-            if (0 === strpos($response, 'HTTP/1.1 200 OK')) {
110
-                $parts = preg_split("#\n\s*\n#Uis", $response);
111
-                return $parts[1];
112
-            }
113
-
114
-            return self::BAD_RESPONSE;
115
-        }
116
-
117
-        return self::BAD_REQUEST;
118
-    }
36
+	/**
37
+	 * reCAPTCHA service host.
38
+	 *
39
+	 * @const string
40
+	 */
41
+	const RECAPTCHA_HOST = 'www.google.com';
42
+
43
+	/**
44
+	 * @const string reCAPTCHA service path
45
+	 */
46
+	const SITE_VERIFY_PATH = '/recaptcha/api/siteverify';
47
+
48
+	/**
49
+	 * @const string Bad request error
50
+	 */
51
+	const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}';
52
+
53
+	/**
54
+	 * @const string Bad response error
55
+	 */
56
+	const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}';
57
+
58
+	/**
59
+	 * Socket to the reCAPTCHA service
60
+	 *
61
+	 * @var Socket
62
+	 */
63
+	private $socket;
64
+
65
+	/**
66
+	 * Constructor
67
+	 *
68
+	 * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing
69
+	 */
70
+	public function __construct(Socket $socket = null)
71
+	{
72
+		if (! is_null($socket)) {
73
+			$this->socket = $socket;
74
+		} else {
75
+			$this->socket = new Socket();
76
+		}
77
+	}
78
+
79
+	/**
80
+	 * Submit the POST request with the specified parameters.
81
+	 *
82
+	 * @param RequestParameters $params Request parameters
83
+	 * @return string Body of the reCAPTCHA response
84
+	 */
85
+	public function submit(RequestParameters $params)
86
+	{
87
+		$errno = 0;
88
+		$errstr = '';
89
+
90
+		if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) {
91
+			$content = $params->toQueryString();
92
+
93
+			$request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n";
94
+			$request .= "Host: " . self::RECAPTCHA_HOST . "\r\n";
95
+			$request .= "Content-Type: application/x-www-form-urlencoded\r\n";
96
+			$request .= "Content-length: " . strlen($content) . "\r\n";
97
+			$request .= "Connection: close\r\n\r\n";
98
+			$request .= $content . "\r\n\r\n";
99
+
100
+			$this->socket->fwrite($request);
101
+			$response = '';
102
+
103
+			while (! $this->socket->feof()) {
104
+				$response .= $this->socket->fgets(4096);
105
+			}
106
+
107
+			$this->socket->fclose();
108
+
109
+			if (0 === strpos($response, 'HTTP/1.1 200 OK')) {
110
+				$parts = preg_split("#\n\s*\n#Uis", $response);
111
+				return $parts[1];
112
+			}
113
+
114
+			return self::BAD_RESPONSE;
115
+		}
116
+
117
+		return self::BAD_REQUEST;
118
+	}
119 119
 }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function __construct(Socket $socket = null)
71 71
     {
72
-        if (! is_null($socket)) {
72
+        if ( ! is_null($socket)) {
73 73
             $this->socket = $socket;
74 74
         } else {
75 75
             $this->socket = new Socket();
@@ -87,20 +87,20 @@  discard block
 block discarded – undo
87 87
         $errno = 0;
88 88
         $errstr = '';
89 89
 
90
-        if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) {
90
+        if ($this->socket->fsockopen('ssl://'.self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) {
91 91
             $content = $params->toQueryString();
92 92
 
93
-            $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n";
94
-            $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n";
93
+            $request = "POST ".self::SITE_VERIFY_PATH." HTTP/1.1\r\n";
94
+            $request .= "Host: ".self::RECAPTCHA_HOST."\r\n";
95 95
             $request .= "Content-Type: application/x-www-form-urlencoded\r\n";
96
-            $request .= "Content-length: " . strlen($content) . "\r\n";
96
+            $request .= "Content-length: ".strlen($content)."\r\n";
97 97
             $request .= "Connection: close\r\n\r\n";
98
-            $request .= $content . "\r\n\r\n";
98
+            $request .= $content."\r\n\r\n";
99 99
 
100 100
             $this->socket->fwrite($request);
101 101
             $response = '';
102 102
 
103
-            while (! $this->socket->feof()) {
103
+            while ( ! $this->socket->feof()) {
104 104
                 $response .= $this->socket->fgets(4096);
105 105
             }
106 106
 
Please login to merge, or discard this patch.
caffeinated/modules/recaptcha/ReCaptcha/RequestMethod/Socket.php 1 patch
Indentation   +69 added lines, -69 removed lines patch added patch discarded remove patch
@@ -29,79 +29,79 @@
 block discarded – undo
29 29
  */
30 30
 class Socket
31 31
 {
32
-    private $handle = null;
32
+	private $handle = null;
33 33
 
34
-    /**
35
-     * fsockopen
36
-     *
37
-     * @see http://php.net/fsockopen
38
-     * @param string $hostname
39
-     * @param int    $port
40
-     * @param int    $errno
41
-     * @param string $errstr
42
-     * @param float  $timeout
43
-     * @return resource
44
-     */
45
-    public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null)
46
-    {
47
-        $this->handle = fsockopen(
48
-            $hostname,
49
-            $port,
50
-            $errno,
51
-            $errstr,
52
-            (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout)
53
-        );
34
+	/**
35
+	 * fsockopen
36
+	 *
37
+	 * @see http://php.net/fsockopen
38
+	 * @param string $hostname
39
+	 * @param int    $port
40
+	 * @param int    $errno
41
+	 * @param string $errstr
42
+	 * @param float  $timeout
43
+	 * @return resource
44
+	 */
45
+	public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null)
46
+	{
47
+		$this->handle = fsockopen(
48
+			$hostname,
49
+			$port,
50
+			$errno,
51
+			$errstr,
52
+			(is_null($timeout) ? ini_get("default_socket_timeout") : $timeout)
53
+		);
54 54
 
55
-        if ($this->handle != false && $errno === 0 && $errstr === '') {
56
-            return $this->handle;
57
-        } else {
58
-            return false;
59
-        }
60
-    }
55
+		if ($this->handle != false && $errno === 0 && $errstr === '') {
56
+			return $this->handle;
57
+		} else {
58
+			return false;
59
+		}
60
+	}
61 61
 
62
-    /**
63
-     * fwrite
64
-     *
65
-     * @see http://php.net/fwrite
66
-     * @param string $string
67
-     * @param int    $length
68
-     * @return int | bool
69
-     */
70
-    public function fwrite($string, $length = null)
71
-    {
72
-        return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length));
73
-    }
62
+	/**
63
+	 * fwrite
64
+	 *
65
+	 * @see http://php.net/fwrite
66
+	 * @param string $string
67
+	 * @param int    $length
68
+	 * @return int | bool
69
+	 */
70
+	public function fwrite($string, $length = null)
71
+	{
72
+		return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length));
73
+	}
74 74
 
75
-    /**
76
-     * fgets
77
-     *
78
-     * @see http://php.net/fgets
79
-     * @param int $length
80
-     */
81
-    public function fgets($length = null)
82
-    {
83
-        return fgets($this->handle, $length);
84
-    }
75
+	/**
76
+	 * fgets
77
+	 *
78
+	 * @see http://php.net/fgets
79
+	 * @param int $length
80
+	 */
81
+	public function fgets($length = null)
82
+	{
83
+		return fgets($this->handle, $length);
84
+	}
85 85
 
86
-    /**
87
-     * feof
88
-     *
89
-     * @see http://php.net/feof
90
-     * @return bool
91
-     */
92
-    public function feof()
93
-    {
94
-        return feof($this->handle);
95
-    }
86
+	/**
87
+	 * feof
88
+	 *
89
+	 * @see http://php.net/feof
90
+	 * @return bool
91
+	 */
92
+	public function feof()
93
+	{
94
+		return feof($this->handle);
95
+	}
96 96
 
97
-    /**
98
-     * fclose
99
-     *
100
-     * @see http://php.net/fclose
101
-     * @return bool
102
-     */
103
-    public function fclose()
104
-    {
105
-        return fclose($this->handle);
106
-    }
97
+	/**
98
+	 * fclose
99
+	 *
100
+	 * @see http://php.net/fclose
101
+	 * @return bool
102
+	 */
103
+	public function fclose()
104
+	{
105
+		return fclose($this->handle);
106
+	}
107 107
 }
Please login to merge, or discard this patch.
ui/browser/checkins/entities/CheckinStatusDashicon.php 1 patch
Indentation   +84 added lines, -84 removed lines patch added patch discarded remove patch
@@ -17,98 +17,98 @@
 block discarded – undo
17 17
 class CheckinStatusDashicon
18 18
 {
19 19
 
20
-    /**
21
-     * @var int $checkin_status
22
-     */
23
-    private $checkin_status;
20
+	/**
21
+	 * @var int $checkin_status
22
+	 */
23
+	private $checkin_status;
24 24
 
25 25
 
26
-    /**
27
-     * CheckinStatusDashicon constructor.
28
-     *
29
-     * @param int $checkin_status
30
-     */
31
-    public function __construct($checkin_status = EE_Checkin::status_checked_never)
32
-    {
33
-        $this->checkin_status = $checkin_status;
34
-    }
26
+	/**
27
+	 * CheckinStatusDashicon constructor.
28
+	 *
29
+	 * @param int $checkin_status
30
+	 */
31
+	public function __construct($checkin_status = EE_Checkin::status_checked_never)
32
+	{
33
+		$this->checkin_status = $checkin_status;
34
+	}
35 35
 
36 36
 
37
-    /**
38
-     * @param EE_Checkin $checkin
39
-     * @return CheckinStatusDashicon
40
-     * @throws EE_Error
41
-     */
42
-    public static function fromCheckin(EE_Checkin $checkin)
43
-    {
44
-        return new CheckinStatusDashicon(
45
-            $checkin->status()
46
-                ? EE_Checkin::status_checked_in
47
-                : EE_Checkin::status_checked_out
48
-        );
49
-    }
37
+	/**
38
+	 * @param EE_Checkin $checkin
39
+	 * @return CheckinStatusDashicon
40
+	 * @throws EE_Error
41
+	 */
42
+	public static function fromCheckin(EE_Checkin $checkin)
43
+	{
44
+		return new CheckinStatusDashicon(
45
+			$checkin->status()
46
+				? EE_Checkin::status_checked_in
47
+				: EE_Checkin::status_checked_out
48
+		);
49
+	}
50 50
 
51 51
 
52
-    /**
53
-     * @param EE_Registration $registration
54
-     * @param EE_Datetime     $datetime
55
-     * @return CheckinStatusDashicon
56
-     * @throws EE_Error
57
-     */
58
-    public static function fromRegistrationAndDatetime(EE_Registration $registration, EE_Datetime $datetime)
59
-    {
60
-        return new CheckinStatusDashicon(
61
-            $registration->check_in_status_for_datetime(
62
-                $datetime->ID()
63
-            )
64
-        );
65
-    }
52
+	/**
53
+	 * @param EE_Registration $registration
54
+	 * @param EE_Datetime     $datetime
55
+	 * @return CheckinStatusDashicon
56
+	 * @throws EE_Error
57
+	 */
58
+	public static function fromRegistrationAndDatetime(EE_Registration $registration, EE_Datetime $datetime)
59
+	{
60
+		return new CheckinStatusDashicon(
61
+			$registration->check_in_status_for_datetime(
62
+				$datetime->ID()
63
+			)
64
+		);
65
+	}
66 66
 
67 67
 
68
-    /**
69
-     * @param EE_Registration $registration
70
-     * @param int             $DTT_ID
71
-     * @return CheckinStatusDashicon
72
-     * @throws EE_Error
73
-     */
74
-    public static function fromRegistrationAndDatetimeId(EE_Registration $registration, $DTT_ID = 0)
75
-    {
76
-        return new CheckinStatusDashicon(
77
-            $registration->check_in_status_for_datetime(
78
-                absint($DTT_ID)
79
-            )
80
-        );
81
-    }
68
+	/**
69
+	 * @param EE_Registration $registration
70
+	 * @param int             $DTT_ID
71
+	 * @return CheckinStatusDashicon
72
+	 * @throws EE_Error
73
+	 */
74
+	public static function fromRegistrationAndDatetimeId(EE_Registration $registration, $DTT_ID = 0)
75
+	{
76
+		return new CheckinStatusDashicon(
77
+			$registration->check_in_status_for_datetime(
78
+				absint($DTT_ID)
79
+			)
80
+		);
81
+	}
82 82
 
83
-    /**
84
-     * Will return the correct set of dashicon css classes for the set checkin status
85
-     *
86
-     * @return string
87
-     */
88
-    public function cssClasses()
89
-    {
90
-        if ($this->checkin_status === EE_Checkin::status_checked_in) {
91
-            return "ee-dashicons ee-icon-check-in checkin-icons checkedin-status-{$this->checkin_status}";
92
-        }
93
-        if ($this->checkin_status === EE_Checkin::status_checked_out) {
94
-            return "ee-dashicons ee-icon-check-out checkin-icons checkedin-status-{$this->checkin_status}";
95
-        }
96
-        return "dashicons dashicons-no checkin-icons checkedin-status-{$this->checkin_status}";
97
-    }
83
+	/**
84
+	 * Will return the correct set of dashicon css classes for the set checkin status
85
+	 *
86
+	 * @return string
87
+	 */
88
+	public function cssClasses()
89
+	{
90
+		if ($this->checkin_status === EE_Checkin::status_checked_in) {
91
+			return "ee-dashicons ee-icon-check-in checkin-icons checkedin-status-{$this->checkin_status}";
92
+		}
93
+		if ($this->checkin_status === EE_Checkin::status_checked_out) {
94
+			return "ee-dashicons ee-icon-check-out checkin-icons checkedin-status-{$this->checkin_status}";
95
+		}
96
+		return "dashicons dashicons-no checkin-icons checkedin-status-{$this->checkin_status}";
97
+	}
98 98
 
99
-    /**
100
-     * returns a description for the Checkin Status Dashicon that can be used in List Table Legends
101
-     *
102
-     * @return string
103
-     */
104
-    public function legendLabel()
105
-    {
106
-        if ($this->checkin_status === EE_Checkin::status_checked_in) {
107
-            return esc_html__('This Registrant has been Checked In', 'event_espresso');
108
-        }
109
-        if ($this->checkin_status === EE_Checkin::status_checked_out) {
110
-            return esc_html__('This Registrant has been Checked Out', 'event_espresso');
111
-        }
112
-        return esc_html__('No Check-in Record has been Created for this Registrant', 'event_espresso');
113
-    }
99
+	/**
100
+	 * returns a description for the Checkin Status Dashicon that can be used in List Table Legends
101
+	 *
102
+	 * @return string
103
+	 */
104
+	public function legendLabel()
105
+	{
106
+		if ($this->checkin_status === EE_Checkin::status_checked_in) {
107
+			return esc_html__('This Registrant has been Checked In', 'event_espresso');
108
+		}
109
+		if ($this->checkin_status === EE_Checkin::status_checked_out) {
110
+			return esc_html__('This Registrant has been Checked Out', 'event_espresso');
111
+		}
112
+		return esc_html__('No Check-in Record has been Created for this Registrant', 'event_espresso');
113
+	}
114 114
 }
Please login to merge, or discard this patch.
core/exceptions/EntityNotFoundException.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -15,27 +15,27 @@
 block discarded – undo
15 15
 {
16 16
 
17 17
 
18
-    /**
19
-     * EntityNotFoundException constructor
20
-     *
21
-     * @param string     $identifier_type the name of the identifier used (ie: ID, Name, etc)
22
-     * @param string     $identifier      the actual data value used to retrieve the entity
23
-     * @param string     $message
24
-     * @param int        $code
25
-     * @param \Exception $previous
26
-     */
27
-    public function __construct($identifier_type, $identifier, $message = '', $code = 0, \Exception $previous = null)
28
-    {
29
-        if (empty($message)) {
30
-            $message = sprintf(
31
-                __(
32
-                    'The requested entity with %1$s="%2$s" was not found.',
33
-                    'event_espresso'
34
-                ),
35
-                $identifier_type,
36
-                $identifier
37
-            );
38
-        }
39
-        parent::__construct($message, $code, $previous);
40
-    }
18
+	/**
19
+	 * EntityNotFoundException constructor
20
+	 *
21
+	 * @param string     $identifier_type the name of the identifier used (ie: ID, Name, etc)
22
+	 * @param string     $identifier      the actual data value used to retrieve the entity
23
+	 * @param string     $message
24
+	 * @param int        $code
25
+	 * @param \Exception $previous
26
+	 */
27
+	public function __construct($identifier_type, $identifier, $message = '', $code = 0, \Exception $previous = null)
28
+	{
29
+		if (empty($message)) {
30
+			$message = sprintf(
31
+				__(
32
+					'The requested entity with %1$s="%2$s" was not found.',
33
+					'event_espresso'
34
+				),
35
+				$identifier_type,
36
+				$identifier
37
+			);
38
+		}
39
+		parent::__construct($message, $code, $previous);
40
+	}
41 41
 }
Please login to merge, or discard this patch.
core/exceptions/InvalidFormSubmissionException.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -13,25 +13,25 @@
 block discarded – undo
13 13
 {
14 14
 
15 15
 
16
-    /**
17
-     * InvalidFormSubmissionException constructor
18
-     *
19
-     * @param string     $form_name
20
-     * @param string     $message
21
-     * @param int        $code
22
-     * @param \Exception $previous
23
-     */
24
-    public function __construct($form_name, $message = '', $code = 0, \Exception $previous = null)
25
-    {
26
-        if (empty($message)) {
27
-            $message = sprintf(
28
-                __(
29
-                    'The data for the "%1$s" form, is either missing or was not submitted properly.',
30
-                    'event_espresso'
31
-                ),
32
-                $form_name
33
-            );
34
-        }
35
-        parent::__construct($message, $code, $previous);
36
-    }
16
+	/**
17
+	 * InvalidFormSubmissionException constructor
18
+	 *
19
+	 * @param string     $form_name
20
+	 * @param string     $message
21
+	 * @param int        $code
22
+	 * @param \Exception $previous
23
+	 */
24
+	public function __construct($form_name, $message = '', $code = 0, \Exception $previous = null)
25
+	{
26
+		if (empty($message)) {
27
+			$message = sprintf(
28
+				__(
29
+					'The data for the "%1$s" form, is either missing or was not submitted properly.',
30
+					'event_espresso'
31
+				),
32
+				$form_name
33
+			);
34
+		}
35
+		parent::__construct($message, $code, $previous);
36
+	}
37 37
 }
Please login to merge, or discard this patch.
core/exceptions/InvalidClassException.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -15,22 +15,22 @@
 block discarded – undo
15 15
 class InvalidClassException extends DomainException
16 16
 {
17 17
 
18
-    /**
19
-     * InvalidClassException constructor.
20
-     *
21
-     * @param string     $class_name
22
-     * @param string     $message
23
-     * @param int        $code
24
-     * @param \Exception $previous
25
-     */
26
-    public function __construct($class_name, $message = '', $code = 0, \Exception $previous = null)
27
-    {
28
-        if (empty($message)) {
29
-            $message = sprintf(
30
-                __('The "%1$s" Class is either missing or invalid.', 'event_espresso'),
31
-                $class_name
32
-            );
33
-        }
34
-        parent::__construct($message, $code, $previous);
35
-    }
18
+	/**
19
+	 * InvalidClassException constructor.
20
+	 *
21
+	 * @param string     $class_name
22
+	 * @param string     $message
23
+	 * @param int        $code
24
+	 * @param \Exception $previous
25
+	 */
26
+	public function __construct($class_name, $message = '', $code = 0, \Exception $previous = null)
27
+	{
28
+		if (empty($message)) {
29
+			$message = sprintf(
30
+				__('The "%1$s" Class is either missing or invalid.', 'event_espresso'),
31
+				$class_name
32
+			);
33
+		}
34
+		parent::__construct($message, $code, $previous);
35
+	}
36 36
 }
Please login to merge, or discard this patch.
core/exceptions/IpnException.php 1 patch
Indentation   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -15,66 +15,66 @@
 block discarded – undo
15 15
 class IpnException extends \LogicException
16 16
 {
17 17
 
18
-    const DUPLICATE = 1;
18
+	const DUPLICATE = 1;
19 19
 
20
-    const UNABLE_TO_VALIDATE = 2;
20
+	const UNABLE_TO_VALIDATE = 2;
21 21
 
22
-    const UNSUPPORTED = 3;
22
+	const UNSUPPORTED = 3;
23 23
 
24
-    /**
25
-     * @var \EE_Payment
26
-     */
27
-    protected $payment;
24
+	/**
25
+	 * @var \EE_Payment
26
+	 */
27
+	protected $payment;
28 28
 
29
-    /**
30
-     * @var mixed IPN data, usually an array or object
31
-     */
32
-    protected $ipn_data;
29
+	/**
30
+	 * @var mixed IPN data, usually an array or object
31
+	 */
32
+	protected $ipn_data;
33 33
 
34 34
 
35
-    public function __construct(
36
-        $message,
37
-        $code = 0,
38
-        \Exception $previous = null,
39
-        \EE_Payment $payment = null,
40
-        $ipn_data = array()
41
-    ) {
42
-        parent::__construct($message, $code, $previous);
43
-        $this->payment = $payment;
44
-        $this->ipn_data = $ipn_data;
45
-    }
35
+	public function __construct(
36
+		$message,
37
+		$code = 0,
38
+		\Exception $previous = null,
39
+		\EE_Payment $payment = null,
40
+		$ipn_data = array()
41
+	) {
42
+		parent::__construct($message, $code, $previous);
43
+		$this->payment = $payment;
44
+		$this->ipn_data = $ipn_data;
45
+	}
46 46
 
47 47
 
48
-    /**
49
-     * Gets the payment associated with this IPN, if known
50
-     *
51
-     * @return \EE_Payment
52
-     */
53
-    public function getPayment()
54
-    {
55
-        return $this->payment;
56
-    }
48
+	/**
49
+	 * Gets the payment associated with this IPN, if known
50
+	 *
51
+	 * @return \EE_Payment
52
+	 */
53
+	public function getPayment()
54
+	{
55
+		return $this->payment;
56
+	}
57 57
 
58 58
 
59
-    /**
60
-     * Returns the payment's properties as an array (even if there is no payment, in which case it's an empty array)
61
-     *
62
-     * @return array
63
-     * @throws \EE_Error
64
-     */
65
-    public function getPaymentProperties()
66
-    {
67
-        return $this->getPayment() instanceof \EE_Payment ? $this->getPayment()->model_field_array() : array();
68
-    }
59
+	/**
60
+	 * Returns the payment's properties as an array (even if there is no payment, in which case it's an empty array)
61
+	 *
62
+	 * @return array
63
+	 * @throws \EE_Error
64
+	 */
65
+	public function getPaymentProperties()
66
+	{
67
+		return $this->getPayment() instanceof \EE_Payment ? $this->getPayment()->model_field_array() : array();
68
+	}
69 69
 
70 70
 
71
-    /**
72
-     * Returns an array, object, or string, however, the IPN data was received
73
-     *
74
-     * @return mixed
75
-     */
76
-    public function getIpnData()
77
-    {
78
-        return $this->ipn_data;
79
-    }
71
+	/**
72
+	 * Returns an array, object, or string, however, the IPN data was received
73
+	 *
74
+	 * @return mixed
75
+	 */
76
+	public function getIpnData()
77
+	{
78
+		return $this->ipn_data;
79
+	}
80 80
 }
Please login to merge, or discard this patch.