for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sagitarius29\LaravelSubscriptions\Traits;
use Sagitarius29\LaravelSubscriptions\Contracts\PlanIntervalContract;
trait HasManyIntervals
{
public function setIntervals(array $intervals)
$this->intervals()->delete();
intervals()
Sagitarius29\LaravelSubs...Traits\HasManyIntervals
setIntervals()
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.
$this->intervals()->saveMany($intervals);
}
public function addInterval(PlanIntervalContract $interval)
$this->intervals()->save($interval);
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.