masumrahmanhasan

Masum rahman hasan

@masumrahmanhasan

10 Posts 28 Views

0 / 255

Hello guys we have an application running in aws and there is 6 superviser running
but the problem is each job is taking 14 min to process on high queue , what can i improve ?

1

99

Have anyone used sanctum for authentication using the api guard ?
In the docs its really not so clear how to use that properly. Does anyone have github repo with best usecase of it ? please share it

94

@nunomaduro while using pest why so many of you use assertStatus instead of expect , and also for other test why dont you use expect ?

1

318

while trying phpstan with laravel to learn strict rules for the model

class Feature extends Model
{
protected $guarded = [];

/**
* @return BelongsToMany<Plan, Feature>
*/
public function plans(): BelongsToMany
{
return $this->belongsToMany(Plan::class);
}
}

on level 6
 Method App\Models\Feature::plans() should return                    
Illuminate\Database\Eloquent\Relations\BelongsToMany<App\Models\Plan,
App\Models\Feature> but returns
Illuminate\Database\Eloquent\Relations\BelongsToMany<App\Models\Plan,
$this(App\Models\Feature)>.
💡 Template type TDeclaringModel on class
Illuminate\Database\Eloquent\Relations\BelongsToMany is not
covariant.

how to solve this
Note: I dont wanna use larastan , i want to focus php

1

202