Meglio
Meglio

Reputation: 1735

Extend Traits with Classes in PHP?

Why we are not allowed to extend Traits with Classes in PHP?

For example:

Trait T { }

Class C use T {}
/* or */
Class C extends T {}

Is there any potential conflict for such syntax? I do not think so.

Upvotes: 37

Views: 31888

Answers (3)

andrewtweber
andrewtweber

Reputation: 25529

You can extend traits somewhat. Expanding on mrlee's answer, when you use a trait you can rename its methods.

Say for example you have a "parent" trait that was defined by your framework:

trait FrameworkTrait {
    public function keepMe() {
        // Framework's logic that you want to keep
    }

    public function replaceMe() {
        // Framework's logic that you need to overwrite
    }
}

Simply pull in the parent trait, rename its replaceMe method to something else, and define your own replaceMe method.

trait MyTrait {
    use FrameworkTrait {
        FrameworkTrait::replaceMe as frameworkReplaceMe;
    }

    public function replaceMe() {
        // You can even call the "parent" method if you'd like:
        $this->frameworkReplaceMe();

        // Your logic here
    }
}

And then in your class:

class MyClass {
    use MyTrait;
}

Now objects of this class can do this:

$obj = new MyClass();
    
$obj->keepMe();             // calls "parent" trait
$obj->replaceMe();          // calls "child" trait
$obj->frameworkReplaceMe(); // calls "parent" trait

Upvotes: 39

leemeichin
leemeichin

Reputation: 3379

The PHP manual states thus:

Traits is a mechanism for code reuse in single inheritance languages such as PHP. A Trait is intended to reduce some limitations of single inheritance by enabling a developer to reuse sets of methods freely in several independent classes living in different class hierarchies. The semantics of the combination of Traits and classes is defined in a way which reduces complexity, and avoids the typical problems associated with multiple inheritance and Mixins.

If you're looking to extend a trait, then it should probably be a class. If you have a set of methods in one class that you want to use in others, but it feels inappropriate to extend the class (eg. class Animal extends Vehicle), then in PHP 5.4 it could work well as a trait.

To answer the question more directly, you don't 'extend' a trait, but you can create traits which themselves use other traits. As per the PHP manual:

trait Hello {
    public function sayHello() {
        echo 'Hello ';
    }
}

trait World {
    public function sayWorld() {
        echo 'World!';
    }
}

trait HelloWorld {
    use Hello, World;
}

class MyHelloWorld {
    use HelloWorld;
}

You can consider this to be a way to maintain your traits in logical groups, and to introduce some modularity.

Edit: having seen some of the comments, I think it's worthwhile to note that using a trait in a base class also means that trait is in any class that extends it, and the trait's functions take precedence over the base class'. Putting it in the child class would merely make the trait's functions unavailable to the parent/base class.

Parent > Trait > Child

http://php.net/manual/en/language.oop5.traits.php

Upvotes: 45

John Conde
John Conde

Reputation: 219804

Only classes can be extended. Traits are not classes. They can be used/included by classes but are not classes themselves. If you think a trait needs to be extended then it probably should be a class, probably an abstract one, and not a trait.

Upvotes: 8

Related Questions