Completed
Branch develop (8f3b65)
by
unknown
27:06
created
includes/swiftmailer/lib/classes/Swift/Plugins/PopBeforeSmtpPlugin.php 1 patch
Indentation   +224 added lines, -224 removed lines patch added patch discarded remove patch
@@ -15,228 +15,228 @@
 block discarded – undo
15 15
  */
16 16
 class Swift_Plugins_PopBeforeSmtpPlugin implements Swift_Events_TransportChangeListener, Swift_Plugins_Pop_Pop3Connection
17 17
 {
18
-    /** A delegate connection to use (mostly a test hook) */
19
-    private $connection;
20
-
21
-    /** Hostname of the POP3 server */
22
-    private $host;
23
-
24
-    /** Port number to connect on */
25
-    private $port;
26
-
27
-    /** Encryption type to use (if any) */
28
-    private $crypto;
29
-
30
-    /** Username to use (if any) */
31
-    private $username;
32
-
33
-    /** Password to use (if any) */
34
-    private $password;
35
-
36
-    /** Established connection via TCP socket */
37
-    private $socket;
38
-
39
-    /** Connect timeout in seconds */
40
-    private $timeout = 10;
41
-
42
-    /** SMTP Transport to bind to */
43
-    private $transport;
44
-
45
-    /**
46
-     * Create a new PopBeforeSmtpPlugin for $host and $port.
47
-     *
48
-     * @param string $host   Hostname or IP. Literal IPv6 addresses should be
49
-     *                       wrapped in square brackets.
50
-     * @param int    $port
51
-     * @param string $crypto as "tls" or "ssl"
52
-     */
53
-    public function __construct($host, $port = 110, $crypto = null)
54
-    {
55
-        $this->host = $host;
56
-        $this->port = $port;
57
-        $this->crypto = $crypto;
58
-    }
59
-
60
-    /**
61
-     * Set a Pop3Connection to delegate to instead of connecting directly.
62
-     *
63
-     * @return $this
64
-     */
65
-    public function setConnection(Swift_Plugins_Pop_Pop3Connection $connection)
66
-    {
67
-        $this->connection = $connection;
68
-
69
-        return $this;
70
-    }
71
-
72
-    /**
73
-     * Bind this plugin to a specific SMTP transport instance.
74
-     */
75
-    public function bindSmtp(Swift_Transport $smtp)
76
-    {
77
-        $this->transport = $smtp;
78
-    }
79
-
80
-    /**
81
-     * Set the connection timeout in seconds (default 10).
82
-     *
83
-     * @param int $timeout
84
-     *
85
-     * @return $this
86
-     */
87
-    public function setTimeout($timeout)
88
-    {
89
-        $this->timeout = (int) $timeout;
90
-
91
-        return $this;
92
-    }
93
-
94
-    /**
95
-     * Set the username to use when connecting (if needed).
96
-     *
97
-     * @param string $username
98
-     *
99
-     * @return $this
100
-     */
101
-    public function setUsername($username)
102
-    {
103
-        $this->username = $username;
104
-
105
-        return $this;
106
-    }
107
-
108
-    /**
109
-     * Set the password to use when connecting (if needed).
110
-     *
111
-     * @param string $password
112
-     *
113
-     * @return $this
114
-     */
115
-    public function setPassword($password)
116
-    {
117
-        $this->password = $password;
118
-
119
-        return $this;
120
-    }
121
-
122
-    /**
123
-     * Connect to the POP3 host and authenticate.
124
-     *
125
-     * @throws Swift_Plugins_Pop_Pop3Exception if connection fails
126
-     */
127
-    public function connect()
128
-    {
129
-        if (isset($this->connection)) {
130
-            $this->connection->connect();
131
-        } else {
132
-            if (!isset($this->socket)) {
133
-                if (!$socket = fsockopen(
134
-                    $this->getHostString(), $this->port, $errno, $errstr, $this->timeout)) {
135
-                    throw new Swift_Plugins_Pop_Pop3Exception(sprintf('Failed to connect to POP3 host [%s]: %s', $this->host, $errstr));
136
-                }
137
-                $this->socket = $socket;
138
-
139
-                if (false === $greeting = fgets($this->socket)) {
140
-                    throw new Swift_Plugins_Pop_Pop3Exception(sprintf('Failed to connect to POP3 host [%s]', trim($greeting ?? '')));
141
-                }
142
-
143
-                $this->assertOk($greeting);
144
-
145
-                if ($this->username) {
146
-                    $this->command(sprintf("USER %s\r\n", $this->username));
147
-                    $this->command(sprintf("PASS %s\r\n", $this->password));
148
-                }
149
-            }
150
-        }
151
-    }
152
-
153
-    /**
154
-     * Disconnect from the POP3 host.
155
-     */
156
-    public function disconnect()
157
-    {
158
-        if (isset($this->connection)) {
159
-            $this->connection->disconnect();
160
-        } else {
161
-            $this->command("QUIT\r\n");
162
-            if (!fclose($this->socket)) {
163
-                throw new Swift_Plugins_Pop_Pop3Exception(sprintf('POP3 host [%s] connection could not be stopped', $this->host));
164
-            }
165
-            $this->socket = null;
166
-        }
167
-    }
168
-
169
-    /**
170
-     * Invoked just before a Transport is started.
171
-     */
172
-    public function beforeTransportStarted(Swift_Events_TransportChangeEvent $evt)
173
-    {
174
-        if (isset($this->transport)) {
175
-            if ($this->transport !== $evt->getTransport()) {
176
-                return;
177
-            }
178
-        }
179
-
180
-        $this->connect();
181
-        $this->disconnect();
182
-    }
183
-
184
-    /**
185
-     * Not used.
186
-     */
187
-    public function transportStarted(Swift_Events_TransportChangeEvent $evt)
188
-    {
189
-    }
190
-
191
-    /**
192
-     * Not used.
193
-     */
194
-    public function beforeTransportStopped(Swift_Events_TransportChangeEvent $evt)
195
-    {
196
-    }
197
-
198
-    /**
199
-     * Not used.
200
-     */
201
-    public function transportStopped(Swift_Events_TransportChangeEvent $evt)
202
-    {
203
-    }
204
-
205
-    private function command($command)
206
-    {
207
-        if (!fwrite($this->socket, $command)) {
208
-            throw new Swift_Plugins_Pop_Pop3Exception(sprintf('Failed to write command [%s] to POP3 host', trim($command ?? '')));
209
-        }
210
-
211
-        if (false === $response = fgets($this->socket)) {
212
-            throw new Swift_Plugins_Pop_Pop3Exception(sprintf('Failed to read from POP3 host after command [%s]', trim($command ?? '')));
213
-        }
214
-
215
-        $this->assertOk($response);
216
-
217
-        return $response;
218
-    }
219
-
220
-    private function assertOk($response)
221
-    {
222
-        if ('+OK' != substr($response, 0, 3)) {
223
-            throw new Swift_Plugins_Pop_Pop3Exception(sprintf('POP3 command failed [%s]', trim($response ?? '')));
224
-        }
225
-    }
226
-
227
-    private function getHostString()
228
-    {
229
-        $host = $this->host;
230
-        switch (strtolower($this->crypto ?? '')) {
231
-            case 'ssl':
232
-                $host = 'ssl://'.$host;
233
-                break;
234
-
235
-            case 'tls':
236
-                $host = 'tls://'.$host;
237
-                break;
238
-        }
239
-
240
-        return $host;
241
-    }
18
+	/** A delegate connection to use (mostly a test hook) */
19
+	private $connection;
20
+
21
+	/** Hostname of the POP3 server */
22
+	private $host;
23
+
24
+	/** Port number to connect on */
25
+	private $port;
26
+
27
+	/** Encryption type to use (if any) */
28
+	private $crypto;
29
+
30
+	/** Username to use (if any) */
31
+	private $username;
32
+
33
+	/** Password to use (if any) */
34
+	private $password;
35
+
36
+	/** Established connection via TCP socket */
37
+	private $socket;
38
+
39
+	/** Connect timeout in seconds */
40
+	private $timeout = 10;
41
+
42
+	/** SMTP Transport to bind to */
43
+	private $transport;
44
+
45
+	/**
46
+	 * Create a new PopBeforeSmtpPlugin for $host and $port.
47
+	 *
48
+	 * @param string $host   Hostname or IP. Literal IPv6 addresses should be
49
+	 *                       wrapped in square brackets.
50
+	 * @param int    $port
51
+	 * @param string $crypto as "tls" or "ssl"
52
+	 */
53
+	public function __construct($host, $port = 110, $crypto = null)
54
+	{
55
+		$this->host = $host;
56
+		$this->port = $port;
57
+		$this->crypto = $crypto;
58
+	}
59
+
60
+	/**
61
+	 * Set a Pop3Connection to delegate to instead of connecting directly.
62
+	 *
63
+	 * @return $this
64
+	 */
65
+	public function setConnection(Swift_Plugins_Pop_Pop3Connection $connection)
66
+	{
67
+		$this->connection = $connection;
68
+
69
+		return $this;
70
+	}
71
+
72
+	/**
73
+	 * Bind this plugin to a specific SMTP transport instance.
74
+	 */
75
+	public function bindSmtp(Swift_Transport $smtp)
76
+	{
77
+		$this->transport = $smtp;
78
+	}
79
+
80
+	/**
81
+	 * Set the connection timeout in seconds (default 10).
82
+	 *
83
+	 * @param int $timeout
84
+	 *
85
+	 * @return $this
86
+	 */
87
+	public function setTimeout($timeout)
88
+	{
89
+		$this->timeout = (int) $timeout;
90
+
91
+		return $this;
92
+	}
93
+
94
+	/**
95
+	 * Set the username to use when connecting (if needed).
96
+	 *
97
+	 * @param string $username
98
+	 *
99
+	 * @return $this
100
+	 */
101
+	public function setUsername($username)
102
+	{
103
+		$this->username = $username;
104
+
105
+		return $this;
106
+	}
107
+
108
+	/**
109
+	 * Set the password to use when connecting (if needed).
110
+	 *
111
+	 * @param string $password
112
+	 *
113
+	 * @return $this
114
+	 */
115
+	public function setPassword($password)
116
+	{
117
+		$this->password = $password;
118
+
119
+		return $this;
120
+	}
121
+
122
+	/**
123
+	 * Connect to the POP3 host and authenticate.
124
+	 *
125
+	 * @throws Swift_Plugins_Pop_Pop3Exception if connection fails
126
+	 */
127
+	public function connect()
128
+	{
129
+		if (isset($this->connection)) {
130
+			$this->connection->connect();
131
+		} else {
132
+			if (!isset($this->socket)) {
133
+				if (!$socket = fsockopen(
134
+					$this->getHostString(), $this->port, $errno, $errstr, $this->timeout)) {
135
+					throw new Swift_Plugins_Pop_Pop3Exception(sprintf('Failed to connect to POP3 host [%s]: %s', $this->host, $errstr));
136
+				}
137
+				$this->socket = $socket;
138
+
139
+				if (false === $greeting = fgets($this->socket)) {
140
+					throw new Swift_Plugins_Pop_Pop3Exception(sprintf('Failed to connect to POP3 host [%s]', trim($greeting ?? '')));
141
+				}
142
+
143
+				$this->assertOk($greeting);
144
+
145
+				if ($this->username) {
146
+					$this->command(sprintf("USER %s\r\n", $this->username));
147
+					$this->command(sprintf("PASS %s\r\n", $this->password));
148
+				}
149
+			}
150
+		}
151
+	}
152
+
153
+	/**
154
+	 * Disconnect from the POP3 host.
155
+	 */
156
+	public function disconnect()
157
+	{
158
+		if (isset($this->connection)) {
159
+			$this->connection->disconnect();
160
+		} else {
161
+			$this->command("QUIT\r\n");
162
+			if (!fclose($this->socket)) {
163
+				throw new Swift_Plugins_Pop_Pop3Exception(sprintf('POP3 host [%s] connection could not be stopped', $this->host));
164
+			}
165
+			$this->socket = null;
166
+		}
167
+	}
168
+
169
+	/**
170
+	 * Invoked just before a Transport is started.
171
+	 */
172
+	public function beforeTransportStarted(Swift_Events_TransportChangeEvent $evt)
173
+	{
174
+		if (isset($this->transport)) {
175
+			if ($this->transport !== $evt->getTransport()) {
176
+				return;
177
+			}
178
+		}
179
+
180
+		$this->connect();
181
+		$this->disconnect();
182
+	}
183
+
184
+	/**
185
+	 * Not used.
186
+	 */
187
+	public function transportStarted(Swift_Events_TransportChangeEvent $evt)
188
+	{
189
+	}
190
+
191
+	/**
192
+	 * Not used.
193
+	 */
194
+	public function beforeTransportStopped(Swift_Events_TransportChangeEvent $evt)
195
+	{
196
+	}
197
+
198
+	/**
199
+	 * Not used.
200
+	 */
201
+	public function transportStopped(Swift_Events_TransportChangeEvent $evt)
202
+	{
203
+	}
204
+
205
+	private function command($command)
206
+	{
207
+		if (!fwrite($this->socket, $command)) {
208
+			throw new Swift_Plugins_Pop_Pop3Exception(sprintf('Failed to write command [%s] to POP3 host', trim($command ?? '')));
209
+		}
210
+
211
+		if (false === $response = fgets($this->socket)) {
212
+			throw new Swift_Plugins_Pop_Pop3Exception(sprintf('Failed to read from POP3 host after command [%s]', trim($command ?? '')));
213
+		}
214
+
215
+		$this->assertOk($response);
216
+
217
+		return $response;
218
+	}
219
+
220
+	private function assertOk($response)
221
+	{
222
+		if ('+OK' != substr($response, 0, 3)) {
223
+			throw new Swift_Plugins_Pop_Pop3Exception(sprintf('POP3 command failed [%s]', trim($response ?? '')));
224
+		}
225
+	}
226
+
227
+	private function getHostString()
228
+	{
229
+		$host = $this->host;
230
+		switch (strtolower($this->crypto ?? '')) {
231
+			case 'ssl':
232
+				$host = 'ssl://'.$host;
233
+				break;
234
+
235
+			case 'tls':
236
+				$host = 'tls://'.$host;
237
+				break;
238
+		}
239
+
240
+		return $host;
241
+	}
242 242
 }
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/classes/Swift/Plugins/Reporter.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -15,17 +15,17 @@
 block discarded – undo
15 15
  */
16 16
 interface Swift_Plugins_Reporter
17 17
 {
18
-    /** The recipient was accepted for delivery */
19
-    const RESULT_PASS = 0x01;
18
+	/** The recipient was accepted for delivery */
19
+	const RESULT_PASS = 0x01;
20 20
 
21
-    /** The recipient could not be accepted */
22
-    const RESULT_FAIL = 0x10;
21
+	/** The recipient could not be accepted */
22
+	const RESULT_FAIL = 0x10;
23 23
 
24
-    /**
25
-     * Notifies this ReportNotifier that $address failed or succeeded.
26
-     *
27
-     * @param string $address
28
-     * @param int    $result  from {@link RESULT_PASS, RESULT_FAIL}
29
-     */
30
-    public function notify(Swift_Mime_SimpleMessage $message, $address, $result);
24
+	/**
25
+	 * Notifies this ReportNotifier that $address failed or succeeded.
26
+	 *
27
+	 * @param string $address
28
+	 * @param int    $result  from {@link RESULT_PASS, RESULT_FAIL}
29
+	 */
30
+	public function notify(Swift_Mime_SimpleMessage $message, $address, $result);
31 31
 }
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/classes/Swift/DependencyException.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
  */
16 16
 class Swift_DependencyException extends Swift_SwiftException
17 17
 {
18
-    /**
19
-     * Create a new DependencyException with $message.
20
-     *
21
-     * @param string $message
22
-     */
23
-    public function __construct($message)
24
-    {
25
-        parent::__construct($message);
26
-    }
18
+	/**
19
+	 * Create a new DependencyException with $message.
20
+	 *
21
+	 * @param string $message
22
+	 */
23
+	public function __construct($message)
24
+	{
25
+		parent::__construct($message);
26
+	}
27 27
 }
Please login to merge, or discard this patch.
lib/classes/Swift/CharacterReaderFactory/SimpleCharacterReaderFactory.php 1 patch
Indentation   +106 added lines, -106 removed lines patch added patch discarded remove patch
@@ -15,110 +15,110 @@
 block discarded – undo
15 15
  */
16 16
 class Swift_CharacterReaderFactory_SimpleCharacterReaderFactory implements Swift_CharacterReaderFactory
17 17
 {
18
-    /**
19
-     * A map of charset patterns to their implementation classes.
20
-     *
21
-     * @var array
22
-     */
23
-    private static $map = [];
24
-
25
-    /**
26
-     * Factories which have already been loaded.
27
-     *
28
-     * @var Swift_CharacterReaderFactory[]
29
-     */
30
-    private static $loaded = [];
31
-
32
-    /**
33
-     * Creates a new CharacterReaderFactory.
34
-     */
35
-    public function __construct()
36
-    {
37
-        $this->init();
38
-    }
39
-
40
-    public function __wakeup()
41
-    {
42
-        $this->init();
43
-    }
44
-
45
-    public function init()
46
-    {
47
-        if (\count(self::$map) > 0) {
48
-            return;
49
-        }
50
-
51
-        $prefix = 'Swift_CharacterReader_';
52
-
53
-        $singleByte = [
54
-            'class' => $prefix.'GenericFixedWidthReader',
55
-            'constructor' => [1],
56
-            ];
57
-
58
-        $doubleByte = [
59
-            'class' => $prefix.'GenericFixedWidthReader',
60
-            'constructor' => [2],
61
-            ];
62
-
63
-        $fourBytes = [
64
-            'class' => $prefix.'GenericFixedWidthReader',
65
-            'constructor' => [4],
66
-            ];
67
-
68
-        // Utf-8
69
-        self::$map['utf-?8'] = [
70
-            'class' => $prefix.'Utf8Reader',
71
-            'constructor' => [],
72
-            ];
73
-
74
-        //7-8 bit charsets
75
-        self::$map['(us-)?ascii'] = $singleByte;
76
-        self::$map['(iso|iec)-?8859-?[0-9]+'] = $singleByte;
77
-        self::$map['windows-?125[0-9]'] = $singleByte;
78
-        self::$map['cp-?[0-9]+'] = $singleByte;
79
-        self::$map['ansi'] = $singleByte;
80
-        self::$map['macintosh'] = $singleByte;
81
-        self::$map['koi-?7'] = $singleByte;
82
-        self::$map['koi-?8-?.+'] = $singleByte;
83
-        self::$map['mik'] = $singleByte;
84
-        self::$map['(cork|t1)'] = $singleByte;
85
-        self::$map['v?iscii'] = $singleByte;
86
-
87
-        //16 bits
88
-        self::$map['(ucs-?2|utf-?16)'] = $doubleByte;
89
-
90
-        //32 bits
91
-        self::$map['(ucs-?4|utf-?32)'] = $fourBytes;
92
-
93
-        // Fallback
94
-        self::$map['.*'] = $singleByte;
95
-    }
96
-
97
-    /**
98
-     * Returns a CharacterReader suitable for the charset applied.
99
-     *
100
-     * @param string $charset
101
-     *
102
-     * @return Swift_CharacterReader
103
-     */
104
-    public function getReaderFor($charset)
105
-    {
106
-        $charset = strtolower(trim($charset ?? ''));
107
-        foreach (self::$map as $pattern => $spec) {
108
-            $re = '/^'.$pattern.'$/D';
109
-            if (preg_match($re, $charset)) {
110
-                if (!\array_key_exists($pattern, self::$loaded)) {
111
-                    $reflector = new ReflectionClass($spec['class']);
112
-                    if ($reflector->getConstructor()) {
113
-                        $reader = $reflector->newInstanceArgs($spec['constructor']);
114
-                    } else {
115
-                        $reader = $reflector->newInstance();
116
-                    }
117
-                    self::$loaded[$pattern] = $reader;
118
-                }
119
-
120
-                return self::$loaded[$pattern];
121
-            }
122
-        }
123
-    }
18
+	/**
19
+	 * A map of charset patterns to their implementation classes.
20
+	 *
21
+	 * @var array
22
+	 */
23
+	private static $map = [];
24
+
25
+	/**
26
+	 * Factories which have already been loaded.
27
+	 *
28
+	 * @var Swift_CharacterReaderFactory[]
29
+	 */
30
+	private static $loaded = [];
31
+
32
+	/**
33
+	 * Creates a new CharacterReaderFactory.
34
+	 */
35
+	public function __construct()
36
+	{
37
+		$this->init();
38
+	}
39
+
40
+	public function __wakeup()
41
+	{
42
+		$this->init();
43
+	}
44
+
45
+	public function init()
46
+	{
47
+		if (\count(self::$map) > 0) {
48
+			return;
49
+		}
50
+
51
+		$prefix = 'Swift_CharacterReader_';
52
+
53
+		$singleByte = [
54
+			'class' => $prefix.'GenericFixedWidthReader',
55
+			'constructor' => [1],
56
+			];
57
+
58
+		$doubleByte = [
59
+			'class' => $prefix.'GenericFixedWidthReader',
60
+			'constructor' => [2],
61
+			];
62
+
63
+		$fourBytes = [
64
+			'class' => $prefix.'GenericFixedWidthReader',
65
+			'constructor' => [4],
66
+			];
67
+
68
+		// Utf-8
69
+		self::$map['utf-?8'] = [
70
+			'class' => $prefix.'Utf8Reader',
71
+			'constructor' => [],
72
+			];
73
+
74
+		//7-8 bit charsets
75
+		self::$map['(us-)?ascii'] = $singleByte;
76
+		self::$map['(iso|iec)-?8859-?[0-9]+'] = $singleByte;
77
+		self::$map['windows-?125[0-9]'] = $singleByte;
78
+		self::$map['cp-?[0-9]+'] = $singleByte;
79
+		self::$map['ansi'] = $singleByte;
80
+		self::$map['macintosh'] = $singleByte;
81
+		self::$map['koi-?7'] = $singleByte;
82
+		self::$map['koi-?8-?.+'] = $singleByte;
83
+		self::$map['mik'] = $singleByte;
84
+		self::$map['(cork|t1)'] = $singleByte;
85
+		self::$map['v?iscii'] = $singleByte;
86
+
87
+		//16 bits
88
+		self::$map['(ucs-?2|utf-?16)'] = $doubleByte;
89
+
90
+		//32 bits
91
+		self::$map['(ucs-?4|utf-?32)'] = $fourBytes;
92
+
93
+		// Fallback
94
+		self::$map['.*'] = $singleByte;
95
+	}
96
+
97
+	/**
98
+	 * Returns a CharacterReader suitable for the charset applied.
99
+	 *
100
+	 * @param string $charset
101
+	 *
102
+	 * @return Swift_CharacterReader
103
+	 */
104
+	public function getReaderFor($charset)
105
+	{
106
+		$charset = strtolower(trim($charset ?? ''));
107
+		foreach (self::$map as $pattern => $spec) {
108
+			$re = '/^'.$pattern.'$/D';
109
+			if (preg_match($re, $charset)) {
110
+				if (!\array_key_exists($pattern, self::$loaded)) {
111
+					$reflector = new ReflectionClass($spec['class']);
112
+					if ($reflector->getConstructor()) {
113
+						$reader = $reflector->newInstanceArgs($spec['constructor']);
114
+					} else {
115
+						$reader = $reflector->newInstance();
116
+					}
117
+					self::$loaded[$pattern] = $reader;
118
+				}
119
+
120
+				return self::$loaded[$pattern];
121
+			}
122
+		}
123
+	}
124 124
 }
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/classes/Swift/Transport.php 1 patch
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -15,62 +15,62 @@
 block discarded – undo
15 15
  */
16 16
 interface Swift_Transport
17 17
 {
18
-    /**
19
-     * Test if this Transport mechanism has started.
20
-     *
21
-     * @return bool
22
-     */
23
-    public function isStarted();
18
+	/**
19
+	 * Test if this Transport mechanism has started.
20
+	 *
21
+	 * @return bool
22
+	 */
23
+	public function isStarted();
24 24
 
25
-    /**
26
-     * Start this Transport mechanism.
27
-     */
28
-    public function start();
25
+	/**
26
+	 * Start this Transport mechanism.
27
+	 */
28
+	public function start();
29 29
 
30
-    /**
31
-     * Stop this Transport mechanism.
32
-     */
33
-    public function stop();
30
+	/**
31
+	 * Stop this Transport mechanism.
32
+	 */
33
+	public function stop();
34 34
 
35
-    /**
36
-     * Check if this Transport mechanism is alive.
37
-     *
38
-     * If a Transport mechanism session is no longer functional, the method
39
-     * returns FALSE. It is the responsibility of the developer to handle this
40
-     * case and restart the Transport mechanism manually.
41
-     *
42
-     * @example
43
-     *
44
-     *   if (!$transport->ping()) {
45
-     *      $transport->stop();
46
-     *      $transport->start();
47
-     *   }
48
-     *
49
-     * The Transport mechanism will be started, if it is not already.
50
-     *
51
-     * It is undefined if the Transport mechanism attempts to restart as long as
52
-     * the return value reflects whether the mechanism is now functional.
53
-     *
54
-     * @return bool TRUE if the transport is alive
55
-     */
56
-    public function ping();
35
+	/**
36
+	 * Check if this Transport mechanism is alive.
37
+	 *
38
+	 * If a Transport mechanism session is no longer functional, the method
39
+	 * returns FALSE. It is the responsibility of the developer to handle this
40
+	 * case and restart the Transport mechanism manually.
41
+	 *
42
+	 * @example
43
+	 *
44
+	 *   if (!$transport->ping()) {
45
+	 *      $transport->stop();
46
+	 *      $transport->start();
47
+	 *   }
48
+	 *
49
+	 * The Transport mechanism will be started, if it is not already.
50
+	 *
51
+	 * It is undefined if the Transport mechanism attempts to restart as long as
52
+	 * the return value reflects whether the mechanism is now functional.
53
+	 *
54
+	 * @return bool TRUE if the transport is alive
55
+	 */
56
+	public function ping();
57 57
 
58
-    /**
59
-     * Send the given Message.
60
-     *
61
-     * Recipient/sender data will be retrieved from the Message API.
62
-     * The return value is the number of recipients who were accepted for delivery.
63
-     *
64
-     * This is the responsibility of the send method to start the transport if needed.
65
-     *
66
-     * @param string[] $failedRecipients An array of failures by-reference
67
-     *
68
-     * @return int
69
-     */
70
-    public function send(Swift_Mime_SimpleMessage $message, &$failedRecipients = null);
58
+	/**
59
+	 * Send the given Message.
60
+	 *
61
+	 * Recipient/sender data will be retrieved from the Message API.
62
+	 * The return value is the number of recipients who were accepted for delivery.
63
+	 *
64
+	 * This is the responsibility of the send method to start the transport if needed.
65
+	 *
66
+	 * @param string[] $failedRecipients An array of failures by-reference
67
+	 *
68
+	 * @return int
69
+	 */
70
+	public function send(Swift_Mime_SimpleMessage $message, &$failedRecipients = null);
71 71
 
72
-    /**
73
-     * Register a plugin in the Transport.
74
-     */
75
-    public function registerPlugin(Swift_Events_EventListener $plugin);
72
+	/**
73
+	 * Register a plugin in the Transport.
74
+	 */
75
+	public function registerPlugin(Swift_Events_EventListener $plugin);
76 76
 }
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/classes/Swift/ConfigurableSpool.php 1 patch
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -15,49 +15,49 @@
 block discarded – undo
15 15
  */
16 16
 abstract class Swift_ConfigurableSpool implements Swift_Spool
17 17
 {
18
-    /** The maximum number of messages to send per flush */
19
-    private $message_limit;
18
+	/** The maximum number of messages to send per flush */
19
+	private $message_limit;
20 20
 
21
-    /** The time limit per flush */
22
-    private $time_limit;
21
+	/** The time limit per flush */
22
+	private $time_limit;
23 23
 
24
-    /**
25
-     * Sets the maximum number of messages to send per flush.
26
-     *
27
-     * @param int $limit
28
-     */
29
-    public function setMessageLimit($limit)
30
-    {
31
-        $this->message_limit = (int) $limit;
32
-    }
24
+	/**
25
+	 * Sets the maximum number of messages to send per flush.
26
+	 *
27
+	 * @param int $limit
28
+	 */
29
+	public function setMessageLimit($limit)
30
+	{
31
+		$this->message_limit = (int) $limit;
32
+	}
33 33
 
34
-    /**
35
-     * Gets the maximum number of messages to send per flush.
36
-     *
37
-     * @return int The limit
38
-     */
39
-    public function getMessageLimit()
40
-    {
41
-        return $this->message_limit;
42
-    }
34
+	/**
35
+	 * Gets the maximum number of messages to send per flush.
36
+	 *
37
+	 * @return int The limit
38
+	 */
39
+	public function getMessageLimit()
40
+	{
41
+		return $this->message_limit;
42
+	}
43 43
 
44
-    /**
45
-     * Sets the time limit (in seconds) per flush.
46
-     *
47
-     * @param int $limit The limit
48
-     */
49
-    public function setTimeLimit($limit)
50
-    {
51
-        $this->time_limit = (int) $limit;
52
-    }
44
+	/**
45
+	 * Sets the time limit (in seconds) per flush.
46
+	 *
47
+	 * @param int $limit The limit
48
+	 */
49
+	public function setTimeLimit($limit)
50
+	{
51
+		$this->time_limit = (int) $limit;
52
+	}
53 53
 
54
-    /**
55
-     * Gets the time limit (in seconds) per flush.
56
-     *
57
-     * @return int The limit
58
-     */
59
-    public function getTimeLimit()
60
-    {
61
-        return $this->time_limit;
62
-    }
54
+	/**
55
+	 * Gets the time limit (in seconds) per flush.
56
+	 *
57
+	 * @return int The limit
58
+	 */
59
+	public function getTimeLimit()
60
+	{
61
+		return $this->time_limit;
62
+	}
63 63
 }
Please login to merge, or discard this patch.
htdocs/includes/swiftmailer/lib/classes/Swift/Events/CommandEvent.php 1 patch
Indentation   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -15,50 +15,50 @@
 block discarded – undo
15 15
  */
16 16
 class Swift_Events_CommandEvent extends Swift_Events_EventObject
17 17
 {
18
-    /**
19
-     * The command sent to the server.
20
-     *
21
-     * @var string
22
-     */
23
-    private $command;
18
+	/**
19
+	 * The command sent to the server.
20
+	 *
21
+	 * @var string
22
+	 */
23
+	private $command;
24 24
 
25
-    /**
26
-     * An array of codes which a successful response will contain.
27
-     *
28
-     * @var int[]
29
-     */
30
-    private $successCodes = [];
25
+	/**
26
+	 * An array of codes which a successful response will contain.
27
+	 *
28
+	 * @var int[]
29
+	 */
30
+	private $successCodes = [];
31 31
 
32
-    /**
33
-     * Create a new CommandEvent for $source with $command.
34
-     *
35
-     * @param string $command
36
-     * @param array  $successCodes
37
-     */
38
-    public function __construct(Swift_Transport $source, $command, $successCodes = [])
39
-    {
40
-        parent::__construct($source);
41
-        $this->command = $command;
42
-        $this->successCodes = $successCodes;
43
-    }
32
+	/**
33
+	 * Create a new CommandEvent for $source with $command.
34
+	 *
35
+	 * @param string $command
36
+	 * @param array  $successCodes
37
+	 */
38
+	public function __construct(Swift_Transport $source, $command, $successCodes = [])
39
+	{
40
+		parent::__construct($source);
41
+		$this->command = $command;
42
+		$this->successCodes = $successCodes;
43
+	}
44 44
 
45
-    /**
46
-     * Get the command which was sent to the server.
47
-     *
48
-     * @return string
49
-     */
50
-    public function getCommand()
51
-    {
52
-        return $this->command;
53
-    }
45
+	/**
46
+	 * Get the command which was sent to the server.
47
+	 *
48
+	 * @return string
49
+	 */
50
+	public function getCommand()
51
+	{
52
+		return $this->command;
53
+	}
54 54
 
55
-    /**
56
-     * Get the numeric response codes which indicate success for this command.
57
-     *
58
-     * @return int[]
59
-     */
60
-    public function getSuccessCodes()
61
-    {
62
-        return $this->successCodes;
63
-    }
55
+	/**
56
+	 * Get the numeric response codes which indicate success for this command.
57
+	 *
58
+	 * @return int[]
59
+	 */
60
+	public function getSuccessCodes()
61
+	{
62
+		return $this->successCodes;
63
+	}
64 64
 }
Please login to merge, or discard this patch.
includes/swiftmailer/lib/classes/Swift/Events/TransportChangeEvent.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
  */
16 16
 class Swift_Events_TransportChangeEvent extends Swift_Events_EventObject
17 17
 {
18
-    /**
19
-     * Get the Transport.
20
-     *
21
-     * @return Swift_Transport
22
-     */
23
-    public function getTransport()
24
-    {
25
-        return $this->getSource();
26
-    }
18
+	/**
19
+	 * Get the Transport.
20
+	 *
21
+	 * @return Swift_Transport
22
+	 */
23
+	public function getTransport()
24
+	{
25
+		return $this->getSource();
26
+	}
27 27
 }
Please login to merge, or discard this patch.
includes/swiftmailer/lib/classes/Swift/Events/TransportChangeListener.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -15,23 +15,23 @@
 block discarded – undo
15 15
  */
16 16
 interface Swift_Events_TransportChangeListener extends Swift_Events_EventListener
17 17
 {
18
-    /**
19
-     * Invoked just before a Transport is started.
20
-     */
21
-    public function beforeTransportStarted(Swift_Events_TransportChangeEvent $evt);
18
+	/**
19
+	 * Invoked just before a Transport is started.
20
+	 */
21
+	public function beforeTransportStarted(Swift_Events_TransportChangeEvent $evt);
22 22
 
23
-    /**
24
-     * Invoked immediately after the Transport is started.
25
-     */
26
-    public function transportStarted(Swift_Events_TransportChangeEvent $evt);
23
+	/**
24
+	 * Invoked immediately after the Transport is started.
25
+	 */
26
+	public function transportStarted(Swift_Events_TransportChangeEvent $evt);
27 27
 
28
-    /**
29
-     * Invoked just before a Transport is stopped.
30
-     */
31
-    public function beforeTransportStopped(Swift_Events_TransportChangeEvent $evt);
28
+	/**
29
+	 * Invoked just before a Transport is stopped.
30
+	 */
31
+	public function beforeTransportStopped(Swift_Events_TransportChangeEvent $evt);
32 32
 
33
-    /**
34
-     * Invoked immediately after the Transport is stopped.
35
-     */
36
-    public function transportStopped(Swift_Events_TransportChangeEvent $evt);
33
+	/**
34
+	 * Invoked immediately after the Transport is stopped.
35
+	 */
36
+	public function transportStopped(Swift_Events_TransportChangeEvent $evt);
37 37
 }
Please login to merge, or discard this patch.