-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/code-style-improvements
- Loading branch information
Showing
5 changed files
with
183 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
/** | ||
* This file is part of phpDocumentor. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @copyright 2010-2017 Mike van Riel<[email protected]> | ||
* @license http://www.opensource.org/licenses/mit-license.php MIT | ||
* @link http://phpdoc.org | ||
*/ | ||
|
||
namespace phpDocumentor\Reflection\Types; | ||
|
||
use phpDocumentor\Reflection\Type; | ||
|
||
/** | ||
* Value Object representing a nullable type. The real type is wrapped. | ||
*/ | ||
final class Nullable implements Type | ||
{ | ||
/** | ||
* @var Type | ||
*/ | ||
private $realType; | ||
|
||
/** | ||
* Initialises this nullable type using the real type embedded | ||
* | ||
* @param Type $realType | ||
*/ | ||
public function __construct(Type $realType) | ||
{ | ||
$this->realType = $realType; | ||
} | ||
|
||
/** | ||
* Provide access to the actual type directly, if needed. | ||
* | ||
* @return Type | ||
*/ | ||
public function getActualType() | ||
{ | ||
return $this->realType; | ||
} | ||
|
||
/** | ||
* Returns a rendered output of the Type as it would be used in a DocBlock. | ||
* | ||
* @return string | ||
*/ | ||
public function __toString() | ||
{ | ||
return '?' . $this->realType->__toString(); | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
/** | ||
* This file is part of phpDocumentor. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @copyright 2010-2015 Mike van Riel<[email protected]> | ||
* @license http://www.opensource.org/licenses/mit-license.php MIT | ||
* @link http://phpdoc.org | ||
*/ | ||
|
||
namespace phpDocumentor\Reflection\Types; | ||
|
||
use phpDocumentor\Reflection\Type; | ||
|
||
/** | ||
* Value Object representing the 'parent' type. | ||
* | ||
* Parent, as a Type, represents the parent class of class in which the associated element was defined. | ||
*/ | ||
final class Parent_ implements Type | ||
{ | ||
/** | ||
* Returns a rendered output of the Type as it would be used in a DocBlock. | ||
* | ||
* @return string | ||
*/ | ||
public function __toString() | ||
{ | ||
return 'parent'; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
/** | ||
* This file is part of phpDocumentor. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @copyright 2010-2017 Mike van Riel<[email protected]> | ||
* @license http://www.opensource.org/licenses/mit-license.php MIT | ||
* @link http://phpdoc.org | ||
*/ | ||
|
||
namespace phpDocumentor\Reflection\Types; | ||
|
||
/** | ||
* @coversDefaultClass \phpDocumentor\Reflection\Types\Nullable | ||
*/ | ||
class NullableTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
/** | ||
* @covers ::__construct | ||
* @covers ::getActualType | ||
*/ | ||
public function testNullableTypeWrapsCorrectly() | ||
{ | ||
$realType = new String_(); | ||
|
||
$nullableString = new Nullable($realType); | ||
|
||
$this->assertSame($realType, $nullableString->getActualType()); | ||
} | ||
|
||
/** | ||
* @covers ::__toString | ||
*/ | ||
public function testNullableStringifyCorrectly() | ||
{ | ||
$this->assertSame('?string', (string)(new Nullable(new String_()))); | ||
} | ||
} |