Conditions | 3 |
Paths | 4 |
Total Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function subscribeTo(PlanContract $plan) |
||
17 | { |
||
18 | $currentSubscription = $this->getCurrentSubscription(); |
||
19 | $start_at = null; |
||
20 | $end_at = null; |
||
21 | |||
22 | if ($currentSubscription == null) { |
||
23 | $start_at = now(); |
||
24 | } |
||
25 | |||
26 | if ($plan->isFree()) { |
||
27 | $end_at = null; |
||
28 | } |
||
29 | |||
30 | $subscription = Subscription::make($plan, $start_at, $end_at); |
||
31 | $subscription = $this->subscriptions()->save($subscription); |
||
32 | |||
33 | return $subscription; |
||
34 | } |
||
35 | |||
59 |
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idable
provides a methodequalsId
that in turn relies on the methodgetId()
. If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()
as an abstract method to the trait will make sure it is available.