mxmbsocket/lib/Ratchet/Application/ConfiguratorInterface.php
Chris Boden c6a91692f7 Interface Cleanup
Separated Observable interface from Decorator interface, also separated config method to its own interface
Cleaned up unit tests to reflect interface changes
2011-11-13 13:37:42 -05:00

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();
}