-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement #6: remove Zend_Amf_Exception class
- Loading branch information
Bui Sy Nguyen
committed
Jan 21, 2016
1 parent
f2255cc
commit a8b02eb
Showing
13 changed files
with
57 additions
and
131 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ class Zend_Amf_Parse_Amf3_Deserializer extends Zend_Amf_Parse_Deserializer | |
* | ||
* @param integer $typeMarker | ||
* @return mixed Whatever the corresponding PHP data type is | ||
* @throws Zend_Amf_Exception for unidentified marker type | ||
* @throws \fproject\amf\AmfException for unidentified marker type | ||
*/ | ||
public function readTypeMarker($typeMarker = null) | ||
{ | ||
|
@@ -212,7 +212,7 @@ public function readString() | |
* | ||
* - date = 0x08 integer-data [ number-data ] | ||
* | ||
* @throws Zend_Amf_Exception | ||
* @throws \fproject\amf\AmfException | ||
* @return DateTime date-time object | ||
* | ||
* 2014/05/24: Bui Sy Nguyen <[email protected]> modified to use | ||
|
@@ -275,7 +275,7 @@ public function readArray() | |
* Read an amf Vector to PHP array | ||
* | ||
* @return array | ||
* @throws Zend_Amf_Exception | ||
* @throws \fproject\amf\AmfException | ||
*/ | ||
public function readVector($type) | ||
{ | ||
|
@@ -319,7 +319,7 @@ public function readVector($type) | |
* @param $eltSize | ||
* @param $numberFormat | ||
* @return array | ||
* @throws Zend_Amf_Exception | ||
* @throws \fproject\amf\AmfException | ||
*/ | ||
public function readNumericVector($len, $fixed, $eltSize, $numberFormat) | ||
{ | ||
|
@@ -363,7 +363,7 @@ public function readNumericVector($len, $fixed, $eltSize, $numberFormat) | |
* @param int $len | ||
* @param bool $fixed | ||
* @return array | ||
* @throws Zend_Amf_Exception | ||
* @throws \fproject\amf\AmfException | ||
*/ | ||
public function readObjectVector($len, $fixed) | ||
{ | ||
|
@@ -397,7 +397,7 @@ public function readObjectVector($len, $fixed) | |
/** | ||
* Read amf Dictionary to PHP array | ||
* @return array | ||
* @throws Zend_Amf_Exception | ||
* @throws \fproject\amf\AmfException | ||
*/ | ||
public function readDictionary() | ||
{ | ||
|
@@ -487,7 +487,7 @@ public function readObject() | |
/** | ||
* @param $className | ||
* @return array | ||
* @throws Zend_Amf_Exception | ||
* @throws \fproject\amf\AmfException | ||
*/ | ||
protected function createObjectInstance($className) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.