public function load( $path ) {
$this->loadFromQueue(); // First clear the queue
$this->queue( $path );
$this->loadFromQueue();
}This was very poorly thought out by me, and to the best of my knowledge, it's never been used. The main problem with this is that it breaks the dependency checking, since we have the expectation that everything is loaded at the same time. Should be safe to hard deprecate in 1.34 and then remove in 1.35.
Steps
- Hard Deprecate in 1.34
- Remove in 1.35