DKE-Data / agrirouter-sdk-php

This project contains the SDK for the communication with the agrirouter. Everything you need for the onboarding process, secure communication and much more.
Apache License 2.0
2 stars 3 forks source link

Types of variables in methods #33

Closed lmis-rom closed 3 years ago

lmis-rom commented 3 years ago

some types cant be defined in method params or in variables - they should be defined in php-doc instead: src/Api/Builder/CapabilityBuilder.php private array $capabilities = [];

could be:

/**
 * @var Capability[]
 */
private array $capabilities = [];