
Separated Observable interface from Decorator interface, also separated config method to its own interface Cleaned up unit tests to reflect interface changes
12 lines
211 B
PHP
12 lines
211 B
PHP
<?php
|
|
namespace Ratchet\Application;
|
|
|
|
/**
|
|
* @todo Does this belong in root dir of application
|
|
*/
|
|
interface ConfiguratorInterface {
|
|
/**
|
|
* @return array
|
|
*/
|
|
static function getDefaultConfig();
|
|
} |