CodeExplorer getAuthorFromBundle example
foreach ($finder->
getIterator() as $fileInfo) { $nameParts =
explode('.',
$fileInfo->
getFilenameWithoutExtension());
$snippetFile = null;
switch (\
count($nameParts)) { case 2:
$snippetFile =
new GenericSnippetFile( implode('.',
$nameParts),
$fileInfo->
getPathname(),
$nameParts[1
],
$this->
getAuthorFromBundle($bundle,
$authors),
false,
$bundle->
getName() );
break;
case 3:
$snippetFile =
new GenericSnippetFile( implode('.',
[$nameParts[0
],
$nameParts[1
]]),
$fileInfo->
getPathname(),
$nameParts[1
],
$this->
getAuthorFromBundle($bundle,
$authors),