summaryrefslogtreecommitdiff
path: root/Zend/tests/enum/traits.phpt
blob: 3de8e1559fe0fac71c1ee72d76acb9c3f64af51e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--TEST--
Enum can use traits
--FILE--
<?php

trait Rectangle {
    public function shape(): string {
        return "Rectangle";
    }
}

enum Suit {
    use Rectangle;

    case Hearts;
    case Diamonds;
    case Clubs;
    case Spades;
}

echo Suit::Hearts->shape() . PHP_EOL;
echo Suit::Diamonds->shape() . PHP_EOL;
echo Suit::Clubs->shape() . PHP_EOL;
echo Suit::Spades->shape() . PHP_EOL;

?>
--EXPECT--
Rectangle
Rectangle
Rectangle
Rectangle