1: <?php
2:
3: namespace Charcoal\App;
4:
5: use \Charcoal\App\App;
6:
7: /**
8: * Interface for objects that depend on an app.
9: *
10: * Mostly exists to avoid boilerplate code duplication.
11: */
12: interface AppAwareInterface
13: {
14: /**
15: * @param App $app The app instance this object depends on.
16: * @return AppAwareInterface Chainable
17: */
18: public function setApp(App $app);
19: }
20: