core icon indicating copy to clipboard operation
core copied to clipboard

short name

Open oscarlosan opened this issue 3 years ago • 1 comments

Hello, is there any way to make calls like this: F::get('id');

instead of: Flight::get ('id');

oscarlosan avatar May 12 '21 10:05 oscarlosan

Use


class_alias('Flight', 'F'); 

Read about PHP function class_alias in the manual.

sah-comp avatar May 12 '21 11:05 sah-comp