| Conditions | 3 |
| Paths | 4 |
| Total Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function subscribeTo(PlanContract $plan) |
||
| 21 | { |
||
| 22 | $currentSubscription = $this->getCurrentSubscription(); |
||
| 23 | $start_at = null; |
||
| 24 | $end_at = null; |
||
| 25 | |||
| 26 | if($currentSubscription == null) { |
||
| 27 | $start_at = now(); |
||
| 28 | } |
||
| 29 | |||
| 30 | if($plan->isFree()) { |
||
| 31 | $end_at = null; |
||
| 32 | } |
||
| 33 | |||
| 34 | $subscription = Subscription::make($plan, $start_at, $end_at); |
||
| 35 | $subscription = $this->subscriptions()->save($subscription); |
||
| 36 | |||
| 37 | return $subscription; |
||
| 38 | } |
||
| 39 | |||
| 67 |
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
Idableprovides a methodequalsIdthat 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.