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

Commit

Permalink
Merge branch 'feature/di' of github.com:ralphschindler/zf2 into featu…
Browse files Browse the repository at this point in the history
…re/rackspace
  • Loading branch information
ezimuel committed May 31, 2011
12 parents 221c254 + d4f9d25 + 3b0e0d4 + d488887 + 3c450c0 + 964d943 + 679904a + d7eb727 + ea05ef8 + 431fead + 1f5cb72 + fd64604 commit c0932a7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/Decode.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
namespace Zend\Mime;

/**
* @uses \Zend\Exception
* @uses \Zend\Mime\Exception\RuntimeException
* @uses \Zend\Mime\Mime
* @category Zend
* @package Zend_Mime
Expand All @@ -41,7 +41,7 @@ class Decode
* @param string $body raw body of message
* @param string $boundary boundary as found in content-type
* @return array parts with content of each part, empty if no parts found
* @throws \Zend\Exception
* @throws Exception\RuntimeException
*/
public static function splitMime($body, $boundary)
{
Expand Down Expand Up @@ -86,7 +86,7 @@ public static function splitMime($body, $boundary)
* @param string $boundary boundary as found in content-type
* @param string $EOL EOL string; defaults to {@link Zend_Mime::LINEEND}
* @return array|null parts as array('header' => array(name => value), 'body' => content), null if no parts found
* @throws \Zend\Exception
* @throws Exception\RuntimeException
*/
public static function splitMessageStruct($message, $boundary, $EOL = Mime::LINEEND)
{
Expand Down Expand Up @@ -188,7 +188,7 @@ public static function splitContentType($type, $wantedPart = null)
* @param string $wantedPart the wanted part, else an array with all parts is returned
* @param string $firstName key name for the first part
* @return string|array wanted part or all parts as array($firstName => firstPart, partname => value)
* @throws \Zend\Exception
* @throws Exception\RuntimeException
*/
public static function splitHeaderField($field, $wantedPart = null, $firstName = 0)
{
Expand Down
1 change: 0 additions & 1 deletion src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
namespace Zend\Mime;

/**
* @uses \Zend\Exception
* @category Zend
* @package Zend_Mime
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
Expand Down
2 changes: 1 addition & 1 deletion src/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
namespace Zend\Mime;

/**
* @uses \Zend\Exception
* @uses \Zend\Mime\Exception\RuntimeException
* @uses \Zend\Mime\Mime
* @uses \Zend\Mime\Decode
* @uses \Zend\Mime\Part
Expand Down

0 comments on commit c0932a7

Please sign in to comment.