Grammar typo (#413)

* Grammar typo

* Fixed style errors as reported by styleci
This commit is contained in:
Hannes Magnússon 2017-11-22 00:37:04 -08:00 committed by Tobias Nyholm
parent ede13bd24c
commit ce484ecbc8
128 changed files with 169 additions and 169 deletions

View File

@ -40,7 +40,7 @@ php composer.phar require mailgun/mailgun-php php-http/curl-client guzzlehttp/ps
### Why requiring so many packages?
Mailgun has a dependency on the virtual package
[php-http/client-implementation](https://packagist.org/providers/php-http/client-implementation) which requires to you install **an** adapter, but we do not care which one. That is an implementation detail in your application. We also need **a** PSR-7 implementation and **a** message factory.
[php-http/client-implementation](https://packagist.org/providers/php-http/client-implementation) which requires you to install **an** adapter, but we do not care which one. That is an implementation detail in your application. We also need **a** PSR-7 implementation and **a** message factory.
You do not have to use the `php-http/curl-client` if you do not want to. You may use the `php-http/guzzle6-adapter`. Read more about the virtual packages, why this is a good idea and about the flexibility it brings at the [HTTPlug docs](http://docs.php-http.org/en/latest/httplug/users.html).

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -69,7 +69,7 @@ abstract class HttpApi
return $response;
}
if ($response->getStatusCode() !== 200 && $response->getStatusCode() !== 201) {
if (200 !== $response->getStatusCode() && 201 !== $response->getStatusCode()) {
$this->handleErrors($response);
}

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -129,7 +129,7 @@ class Message extends HttpApi
$path = $filePath['filePath'];
// Remove leading @ symbol
if (strpos($path, '@') === 0) {
if (0 === strpos($path, '@')) {
$path = substr($path, 1);
}

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -246,7 +246,7 @@ class RestClient
$jsonResponseData = json_decode($data, false);
$result = new \stdClass();
// return response data as json if possible, raw if not
$result->http_response_body = $data && $jsonResponseData === null ? $data : $jsonResponseData;
$result->http_response_body = $data && null === $jsonResponseData ? $data : $jsonResponseData;
$result->http_response_code = $httpResponseCode;
return $result;
@ -270,7 +270,7 @@ class RestClient
{
$body = (string) $responseObj->getBody();
$response = json_decode($body);
if (json_last_error() == JSON_ERROR_NONE && isset($response->message)) {
if (JSON_ERROR_NONE == json_last_error() && isset($response->message)) {
return ' '.$response->message;
}
@ -303,7 +303,7 @@ class RestClient
}
// Remove leading @ symbol
if (strpos($filePath, '@') === 0) {
if (0 === strpos($filePath, '@')) {
$filePath = substr($filePath, 1);
}
@ -322,7 +322,7 @@ class RestClient
*/
protected function getHttpClient()
{
if ($this->httpClient === null) {
if (null === $this->httpClient) {
$this->httpClient = HttpClientDiscovery::find();
}

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -45,7 +45,7 @@ final class HttpClientException extends \RuntimeException implements Exception
$this->response = $response;
$this->responseCode = $response->getStatusCode();
$body = $response->getBody()->__toString();
if (strpos($response->getHeaderLine('Content-Type'), 'application/json') !== 0) {
if (0 !== strpos($response->getHeaderLine('Content-Type'), 'application/json')) {
$this->responseBody['message'] = $body;
} else {
$this->responseBody = json_decode($body, true);

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -132,7 +132,7 @@ final class HttpClientConfigurator
*/
private function getUriFactory()
{
if ($this->uriFactory === null) {
if (null === $this->uriFactory) {
$this->uriFactory = UriFactoryDiscovery::find();
}
@ -156,7 +156,7 @@ final class HttpClientConfigurator
*/
private function getHttpClient()
{
if ($this->httpClient === null) {
if (null === $this->httpClient) {
$this->httpClient = HttpClientDiscovery::find();
}

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -28,7 +28,7 @@ final class ArrayHydrator implements Hydrator
public function hydrate(ResponseInterface $response, $class)
{
$body = $response->getBody()->__toString();
if (strpos($response->getHeaderLine('Content-Type'), 'application/json') !== 0) {
if (0 !== strpos($response->getHeaderLine('Content-Type'), 'application/json')) {
throw new HydrationException('The ArrayHydrator cannot hydrate response with Content-Type:'.$response->getHeaderLine('Content-Type'));
}

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -30,7 +30,7 @@ final class ModelHydrator implements Hydrator
{
$body = $response->getBody()->__toString();
$contentType = $response->getHeaderLine('Content-Type');
if (strpos($contentType, 'application/json') !== 0 && strpos($contentType, 'application/octet-stream') !== 0) {
if (0 !== strpos($contentType, 'application/json') && 0 !== strpos($contentType, 'application/octet-stream')) {
throw new HydrationException('The ModelHydrator cannot hydrate response with Content-Type: '.$contentType);
}

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -166,7 +166,7 @@ class Mailgun
*/
public function verifyWebhookSignature($postData = null)
{
if ($postData === null) {
if (null === $postData) {
$postData = $_POST;
}
if (!isset($postData['timestamp']) || !isset($postData['token']) || !isset($postData['signature'])) {

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -89,7 +89,7 @@ class BatchMessage extends MessageBuilder
if (isset($this->message[$headerName])) {
array_push($this->message[$headerName], $compiledAddress);
} elseif ($headerName == 'h:reply-to') {
} elseif ('h:reply-to' == $headerName) {
$this->message[$headerName] = $compiledAddress;
} else {
$this->message[$headerName] = [$compiledAddress];

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
@ -101,7 +101,7 @@ class MessageBuilder
return $address;
}
$fullName = $this->getFullName($variables);
if ($fullName != null) {
if (null != $fullName) {
return sprintf('"%s" <%s>', $fullName, $address);
}
@ -117,7 +117,7 @@ class MessageBuilder
{
$compiledAddress = $this->parseAddress($address, $variables);
if ($headerName === 'h:reply-to') {
if ('h:reply-to' === $headerName) {
$this->message[$headerName] = $compiledAddress;
} elseif (isset($this->message[$headerName])) {
array_push($this->message[$headerName], $compiledAddress);
@ -229,7 +229,7 @@ class MessageBuilder
*/
public function setSubject($subject = '')
{
if ($subject == null || $subject == '') {
if (null == $subject || '' == $subject) {
$subject = ' ';
}
$this->message['subject'] = $subject;
@ -269,7 +269,7 @@ class MessageBuilder
*/
public function setTextBody($textBody)
{
if ($textBody == null || $textBody == '') {
if (null == $textBody || '' == $textBody) {
$textBody = ' ';
}
$this->message['text'] = $textBody;
@ -284,7 +284,7 @@ class MessageBuilder
*/
public function setHtmlBody($htmlBody)
{
if ($htmlBody == null || $htmlBody == '') {
if (null == $htmlBody || '' == $htmlBody) {
$htmlBody = ' ';
}
$this->message['html'] = $htmlBody;
@ -328,7 +328,7 @@ class MessageBuilder
*/
public function addInlineImage($inlineImagePath, $inlineImageName = null)
{
if (strpos($inlineImagePath, '@') !== 0) {
if (0 !== strpos($inlineImagePath, '@')) {
throw new InvalidParameter(ExceptionMessages::INVALID_PARAMETER_INLINE);
}
@ -444,7 +444,7 @@ class MessageBuilder
{
if (filter_var($enabled, FILTER_VALIDATE_BOOLEAN)) {
$enabled = 'yes';
} elseif ($enabled == 'html') {
} elseif ('html' == $enabled) {
$enabled = 'html';
} else {
$enabled = 'no';

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

View File

@ -1,7 +1,7 @@
<?php
/*
* Copyright (C) 2013-2016 Mailgun
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.

Some files were not shown because too many files have changed in this diff Show More