Fix the thing

This commit is contained in:
Clivern 2019-11-13 12:22:12 +01:00
parent b7120d8e3b
commit 3a97db9625
10 changed files with 464 additions and 302 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2017 Cliven
Copyright (c) 2019 Cliven
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -2,7 +2,7 @@ Imap
====
:mailbox_with_mail: Access Mailbox Using PHP IMAP.
*Current Version: 1.0.5*
*Current Version: 1.0.6*
[![Build Status](https://travis-ci.org/Clivern/Imap.svg?branch=master)](https://travis-ci.org/Clivern/Imap)
@ -265,6 +265,11 @@ Misc
Changelog
---------
Version 1.0.6:
```
Fix Class Name.
```
Version 1.0.5:
```
Enhance code style.
@ -299,6 +304,6 @@ Initial Release.
Acknowledgements
----------------
© 2017, Clivern. Released under the [MIT License](http://www.opensource.org/licenses/mit-license.php).
© 2019, Clivern. Released under the [MIT License](http://www.opensource.org/licenses/mit-license.php).
**Imap** is authored and maintained by [@clivern](http://github.com/clivern).

740
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -54,8 +54,6 @@ class Message
/**
* Message Constructor.
*
* @param Connection $connection
*/
public function __construct(Connection $connection, Header $header, Action $action, Body $body)
{

View File

@ -31,8 +31,6 @@ class Action
/**
* Class Constructor.
*
* @param Connection $connection
*/
public function __construct(Connection $connection)
{

View File

@ -41,8 +41,6 @@ class Attachment
/**
* Class Constructor.
*
* @param Connection $connection
*/
public function __construct(Connection $connection)
{

View File

@ -41,8 +41,6 @@ class Body
/**
* Class Constructor.
*
* @param Connection $connection
*/
public function __construct(Connection $connection)
{

View File

@ -36,8 +36,6 @@ class Header
/**
* Class Constructor.
*
* @param Connection $connection
*/
public function __construct(Connection $connection)
{

View File

@ -23,9 +23,6 @@ class MessageIterator extends \ArrayIterator
/**
* Constructor.
*
* @param Connection $connection
* @param array $message_numbers
*/
public function __construct(Connection $connection, array $message_numbers)
{

View File

@ -32,8 +32,6 @@ class Search
/**
* Add Condition.
*
* @param Condition $condition
*
* @return Search
*/
public function addCondition(Condition $condition)