<?php trait ValuesContainer{ //const myVariable = 12; // A trait can't has constants private $value1 = 1; protected $value2 = 2; public $value3 = 3; } class ValueB{ use ValuesContainer; //private $value1 = 7; // FAIL !!! //protected $value2 = 6; // FAIL !!! //public $value3 = 5; // FAIL !!! }
You have javascript disabled. You will not be able to edit any code.