Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
[zen-52] Renamed abstract classes in Zend\Stdlib
Browse files Browse the repository at this point in the history
Renamed abstract classes
Fixed use statements
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Transport/FileOptions.php
Expand Up @@ -22,7 +22,7 @@
namespace Zend\Mail\Transport;

use Zend\Mail\Exception,
Zend\Stdlib\Options;
Zend\Stdlib\AbstractOptions;

/**
* @category Zend
Expand All @@ -31,7 +31,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class FileOptions extends Options
class FileOptions extends AbstractOptions
{
/**
* @var string Local client hostname
Expand Down
4 changes: 2 additions & 2 deletions src/Transport/SmtpOptions.php
Expand Up @@ -22,7 +22,7 @@
namespace Zend\Mail\Transport;

use Zend\Mail\Exception,
Zend\Stdlib\Options;
Zend\Stdlib\AbstractOptions;

/**
* @category Zend
Expand All @@ -31,7 +31,7 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class SmtpOptions extends Options
class SmtpOptions extends AbstractOptions
{
/**
* @var string Local client hostname
Expand Down

0 comments on commit c566abf

Please sign in to comment.