public function testProtectedGetPhpDeclarationNullValue()
 {
     $property = new PhpProperty('foo', null, PhpProperty::ACCESS_PROTECTED);
     $this->assertSame('protected $foo = null;', $property->getPhpDeclaration());
 }