for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace carono\exchange1c\models;
class TestingDocumentClass extends TestingClass
{
protected static $property = 'documentClass';
protected static function methodRules()
return array_merge(parent::methodRules(), [
[
['getPartner1c'],
'needContext' => true,
'return' => 'interface',
'value' => 'carono\exchange1c\interfaces\PartnerInterface'
],
[['findDocuments1c'], 'return' => 'array'],
]);
}