Skip to content

Commit

Permalink
Add phpstorm ide meta to configure UserService return user type #94
Browse files Browse the repository at this point in the history
  • Loading branch information
asika32764 committed Jun 16, 2024
1 parent fef7388 commit f3c246c
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .ide/.phpstorm.meta.php/user.meta.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?php

namespace PHPSTORM_META {

override(
\Lyrasoft\Luna\User\UserService::getUser(),
map([
'' => \Lyrasoft\Luna\Entity\User::class
])
);

override(
\Lyrasoft\Luna\User\UserService::getCurrentUser(),
map([
'' => \Lyrasoft\Luna\Entity\User::class
])
);

override(
\Lyrasoft\Luna\User\UserService::getLoggedInUser(),
map([
'' => \Lyrasoft\Luna\Entity\User::class
])
);

override(
\Lyrasoft\Luna\User\UserService::load(),
map([
'' => \Lyrasoft\Luna\Entity\User::class
])
);

override(
\Lyrasoft\Luna\User\UserService::mustLoad(),
map([
'' => \Lyrasoft\Luna\Entity\User::class
])
);

override(
\Lyrasoft\Luna\User\UserService::createUserEntity(),
map([
'' => \Lyrasoft\Luna\Entity\User::class
])
);
}

0 comments on commit f3c246c

Please sign in to comment.