I'm developing a project using Ionic, and would like to better organize my classes.
Below is an example of how I would do with PHP:
<?php
trait comportamento {
public function ficarTriste() {
}
public functi...
github.com/HubToDo/traits/blob/master/tests/JsonRenderTest.p hp
I am doing a successful test of my trait function
My trait is this:
<?php
namespace HubToDo\Traits;
use InvalidArgumentException;
/**
* Trait JsonRender.
*
* @package...