gearsdigital/reporter-for-kirby

View on GitHub
lib/Vendor/Vendors.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace KirbyReporter\Vendor;

trait Vendors
{
    /**
     * Currently supported platforms.
     *
     * Define all supported platforms like Github or
     * Gitlab without TLD.
     */
    public array $providers = [
        'github',
        'gitlab',
        'bitbucket',
    ];
}