Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Naoki Tsuchiya <[email protected]>
  • Loading branch information
koriym and NaokiTsuchiya authored Sep 15, 2023
1 parent c235bb4 commit f2730b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Compiler/CompileApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public function compile(CompileInjector $injector, array $extraContexts = []): a
$meta = $injector->getInstance(AbstractAppMeta::class);
// check resource injection and create annotation cache
$resources = $meta->getResourceListGenerator();
foreach ($resources as $resourc) {
foreach ($resources as $resource) {
$this->logs['class']++;
[$className] = $resourc;
[$className] = $resource;
$this->saveMeta($namedParams, new ReflectionClass($className));
}

Expand Down

0 comments on commit f2730b7

Please sign in to comment.