for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Startwind\Inventorio\Collector\Inventorio;
use Startwind\Inventorio\Collector\Collector;
/**
* This collector returns details about this Inventorio client
*/
class DevelopmentCollector implements Collector
{
protected const COLLECTION_IDENTIFIER = '_InventorioDevelopment';
* @inheritDoc
public function getIdentifier(): string
return self::COLLECTION_IDENTIFIER;
}
public function collect(): array
return [
'bug' => true
];