mirror of
https://gh.wpcy.net/https://github.com/ztersinc/freescout-clickup-module.git
synced 2026-04-17 19:22:21 +08:00
19 lines
365 B
PHP
19 lines
365 B
PHP
<?php
|
|
|
|
namespace Modules\ClickupIntegration\Extensions\Contracts;
|
|
|
|
interface Registrable {
|
|
/**
|
|
* Indicates this is a registrable instance
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register();
|
|
|
|
/**
|
|
* Indicates whether an external dependency is needed to register
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function canRegister();
|
|
}
|