<?php

namespace Foo;

use Baz\SomeExistingTrait;
use Quz\SomeOtherExistingTrait;
use Qax\SomeEvenOtherExistingTrait;

class Bar
{
    use SomeExistingTrait;
    use SomeOtherExistingTrait;
    use SomeEvenOtherExistingTrait;
}