Skip to content

Commit

Permalink
UI: indentation, whitespaces, closing ?> removed in Crawler
Browse files Browse the repository at this point in the history
  • Loading branch information
klees committed Jun 14, 2016
1 parent 70b0151 commit 2f47e82
Show file tree
Hide file tree
Showing 9 changed files with 1,273 additions and 1,283 deletions.
23 changes: 11 additions & 12 deletions src/UI/Implementation/Crawler/Crawler.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@

namespace ILIAS\UI\Implementation\Crawler;
use ILIAS\UI\Implementation\Crawler\Entry as Entry;

/**
* Crawls all UI components for YAML information.
*/
interface Crawler {
/**
* Starts with the factory indicated by factory path and crawles form this point all all subsequent factories
* recursively relying on the return statement given for each abstract component.
* @param $factoryPath
* @param Entry\ComponentEntry|null $parent
* @param int $depth
* @return Entry\ComponentEntries
*/
public function crawlFactory($factoryPath,Entry\ComponentEntry $parent = null,$depth=0);



/**
* Starts with the factory indicated by factory path and crawles form this point all all subsequent factories
* recursively relying on the return statement given for each abstract component.
*
* @param string $factoryPath
* @param Entry\ComponentEntry|null $parent
* @param int $depth
* @return Entry\ComponentEntries
*/
public function crawlFactory($factoryPath,Entry\ComponentEntry $parent = null,$depth=0);
}
Loading

0 comments on commit 2f47e82

Please sign in to comment.