Skip to content

Commit 31d67ac

Browse files
Merge pull request #89 from garak/check-types
Check types
2 parents b20e6aa + c84198b commit 31d67ac

File tree

4 files changed

+30
-11
lines changed

4 files changed

+30
-11
lines changed

spec/Packagist/Api/Result/Package/DistSpec.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class DistSpec extends ObjectBehavior
1111
{
12-
public function let()
12+
public function let(): void
1313
{
1414
$this->fromArray([
1515
'type' => 'git',
@@ -19,32 +19,32 @@ public function let()
1919
]);
2020
}
2121

22-
public function it_is_initializable()
22+
public function it_is_initializable(): void
2323
{
2424
$this->shouldHaveType(Dist::class);
2525
}
2626

27-
public function it_gets_type()
27+
public function it_gets_type(): void
2828
{
2929
$this->getType()->shouldReturn('git');
3030
}
3131

32-
public function it_gets_url()
32+
public function it_gets_url(): void
3333
{
3434
$this->getUrl()->shouldReturn('https://github.com/Sylius/Sylius.git');
3535
}
3636

37-
public function it_gets_reference()
37+
public function it_gets_reference(): void
3838
{
3939
$this->getReference()->shouldReturn('cb0a489db41707d5df078f1f35e028e04ffd9e8e');
4040
}
4141

42-
public function it_gets_shasum()
42+
public function it_gets_shasum(): void
4343
{
4444
$this->getShasum()->shouldReturn('cb0a489db41707d5df078f1f35e028e04ffd9e8e');
4545
}
4646

47-
public function it_can_deal_with_nullable_reference()
47+
public function it_can_deal_with_nullable_reference(): void
4848
{
4949
$this->fromArray([
5050
'type' => 'git',
@@ -56,7 +56,7 @@ public function it_can_deal_with_nullable_reference()
5656
$this->getReference()->shouldReturn(null);
5757
}
5858

59-
public function it_can_deal_with_nullable_shasum()
59+
public function it_can_deal_with_nullable_shasum(): void
6060
{
6161
$this->fromArray([
6262
'type' => 'git',

src/Packagist/Api/Result/AbstractResult.php

+19
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,26 @@ public function fromArray(array $data): void
1313
$inflector = InflectorFactory::create()->build();
1414
foreach ($data as $key => $value) {
1515
$property = $inflector->camelize($key);
16+
if (null === $value && !$this->isNullable($property)) {
17+
continue;
18+
}
1619
$this->$property = $value;
1720
}
1821
}
22+
23+
private function isNullable(string $property): bool
24+
{
25+
if (PHP_MAJOR_VERSION < 8 || !property_exists($this, $property)) {
26+
return true;
27+
}
28+
29+
$reflection = new \ReflectionClass($this);
30+
try {
31+
$reflectionProperty = $reflection->getProperty($property);
32+
} catch (\ReflectionException $exception) {
33+
return false;
34+
}
35+
36+
return null === $reflectionProperty->getDefaultValue();
37+
}
1938
}

src/Packagist/Api/Result/Package.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Package extends AbstractResult
2222

2323
protected string $repository = '';
2424

25-
protected ?Downloads $downloads;
25+
protected ?Downloads $downloads = null;
2626

2727
protected int $favers = 0;
2828

src/Packagist/Api/Result/Package/Dist.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
class Dist extends AbstractResult
1010
{
11-
protected ?string $shasum;
11+
protected ?string $shasum = null;
1212

1313
protected string $type;
1414

1515
protected string $url;
1616

17-
protected ?string $reference;
17+
protected ?string $reference = null;
1818

1919
public function getShasum(): ?string
2020
{

0 commit comments

Comments
 (0)