for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace App\Modules\PushNotificationDevices\Repositories;
use App\Modules\Core\BaseClasses\BaseRepository;
use LaravelFCM\Message\OptionsBuilder;
use LaravelFCM\Message\PayloadDataBuilder;
use LaravelFCM\Message\PayloadNotificationBuilder;
use App\Modules\PushNotificationDevices\PushNotificationDevice;
class PushNotificationDeviceRepository extends BaseRepository
{
/**
* Init new object.
*
* @param PushNotificationDevice $model
* @return void
@return
Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.
Please refer to the PHP core documentation on constructors.
*/
public function __construct(PushNotificationDevice $model)
parent::__construct($model);
}
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.