-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove @category from src/ docblocks
They serve no purpose. Also, use "@category Tests" for unittests
- Loading branch information
Showing
16 changed files
with
22 additions
and
21 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,11 +2,10 @@ | |
/** | ||
* Automatically map JSON structures into objects. | ||
* | ||
* @category Netresearch | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
* @link http://cweiske.de/ | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
* @link http://cweiske.de/ | ||
*/ | ||
class JsonMapper | ||
{ | ||
|
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 |
---|---|---|
|
@@ -2,11 +2,10 @@ | |
/** | ||
* Simple exception | ||
* | ||
* @category Netresearch | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
* @link http://cweiske.de/ | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
* @link http://cweiske.de/ | ||
*/ | ||
class JsonMapper_Exception extends Exception | ||
{ | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
/** | ||
* Unit tests for JsonMapper's array handling | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
/** | ||
* Unit tests for JsonMapper's support for PHP 7.4 typed arrays | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Martin Reinfandt <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
/** | ||
* Unit tests for JsonMapper's support for PHP 8.0 typed arrays for properties with constructor promotion | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Andreas Wunderwald <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/** | ||
* Unit tests for JsonMapper's classMap | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
/** | ||
* Unit tests for JsonMapper's support for PHP 8.1 enums | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Martin Reinfandt <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
/** | ||
* Unit tests for JsonMapper's object handling (events) | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* Unit tests for JsonMapper's support for PHP 8.0 mixed type | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Lukas Cerny <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/** | ||
* Unit tests for JsonMapper's object handling | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
/** | ||
* Unit tests for JsonMapper that don't fit in other categories | ||
* | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
/** | ||
* Unit tests for JsonMapper option "bRemoveUndefinedAttributes". | ||
* | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/** | ||
* Unit tests for JsonMapper's simple type handling | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* Unit tests for JsonMapper's support for PHP 7.4 strict types | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Lukas Cerny <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* Unit tests for JsonMapper's union type handling | ||
* | ||
* @category Tools | ||
* @category Tests | ||
* @package JsonMapper | ||
* @author Christian Weiske <[email protected]> | ||
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 | ||
|