bakaphp /
phalcon-api
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Gewaer\Notifications\PushNotifications; |
||
| 4 | |||
| 5 | use Namshi\Notificator\Notification; |
||
| 6 | use Gewaer\Contracts\PushNotificationsContract; |
||
| 7 | use Gewaer\Notifications\PushNotifications\PushNotifications as PushNotifications; |
||
| 8 | |||
| 9 | class AppsPushNotifications extends PushNotifications implements PushNotificationsContract |
||
| 10 | { |
||
| 11 | public function __construct( Users $user,string $content, int $system_module_id = 0) |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
The type
Gewaer\Notifications\PushNotifications\Users was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 12 | { |
||
| 13 | $this->user = $user; |
||
| 14 | $this->content = $content; |
||
| 15 | $this->system_module_id = $system_module_id; |
||
|
0 ignored issues
–
show
|
|||
| 16 | } |
||
| 17 | |||
| 18 | public function assemble() |
||
| 19 | { |
||
| 20 | return $this->content . " From Apps"; |
||
| 21 | } |
||
| 22 | } |
||
| 23 |