Trial | Trial + Cancelled | Recurring | Recurring + Cancelled | Cancelled [ended] | |
---|---|---|---|---|---|
onTrial() |
β | β | β | β | β |
active() |
β | β | β | β | β |
valid() |
β | β | β | β | β |
cancelled() |
β | β | β | β | β |
onGracePeriod() |
β | β | β | β | β |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Responses; | |
use App\Models\ContactType; | |
use App\Factories\CsvFactory; | |
class ContactIndexResponse extends Response | |
{ | |
public function __construct($contacts) |
Trial | Trial + Cancelled | Recurring | Recurring + Cancelled | Cancelled [ended] | |
---|---|---|---|---|---|
ended() |
β | β | β | β | β |
resumable() |
β | β | β | β | β |
activelyRecurring() |
β | β | β | β | β |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Builders; | |
use Illuminate\Database\Eloquent\Builder as BaseBuilder; | |
class Builder extends BaseBuilder | |
{ | |
public function search($term, $attributes) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace Transducers; | |
use Closure; | |
function compose(array $reducers): Closure | |
{ |