Skip to content

Instantly share code, notes, and snippets.

View FyiurAmron's full-sized avatar
🐊
I'm lying right now.

FyiurAmron

🐊
I'm lying right now.
  • Philosoraptor LLC
  • Xanadu
View GitHub Profile
@hkdobrev
hkdobrev / class-order.php
Last active May 15, 2024 16:56
PHP convention for the order in a class.
<?php namespace Vendor\Library;
use Another\Vendor\Library\ClassName;
abstract class ClassName extends AnotherClass implements Countable, Serializable
{
const CONSTANTS = 'top';
use someTrait, anotherTrait {
anotherTrait::traitMethod insteadof someTrait;