Skip to content

Commit

Permalink
Fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
tfamula committed Oct 11, 2023
1 parent 64a93c6 commit 6c88f09
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions Services/Skill/Table/classes/class.SkillTableManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,32 +35,29 @@ public function __construct(

public function getSkillUsageTable(
string $cskill_id,
array $usage, string $mode = ""
): SkillUsageTable
{
array $usage,
string $mode = ""
): SkillUsageTable {
return new SkillUsageTable($cskill_id, $usage, $mode);
}

public function getAssignedObjectsTable(
array $objects
): AssignedObjectsTable
{
): AssignedObjectsTable {
return new AssignedObjectsTable($objects);
}

public function getSkillProfileLevelAssignmentTable(
string $cskill_id,
bool $update = false
): SkillProfileLevelAssignmentTable
{
): SkillProfileLevelAssignmentTable {
return new SkillProfileLevelAssignmentTable($cskill_id, $update);
}

public function getSkillProfileUserAssignmentTable(
Profile\SkillProfile $profile,
Access\SkillTreeAccess $tree_access_manager
): SkillProfileUserAssignmentTable
{
): SkillProfileUserAssignmentTable {
return new SkillProfileUserAssignmentTable($profile, $tree_access_manager);
}
}

0 comments on commit 6c88f09

Please sign in to comment.