swoole / library

📚 Swoole Library
https://wiki.swoole.com/#/library
Apache License 2.0
232 stars 59 forks source link

Add from static constructors #148

Closed leocavalcante closed 2 years ago

leocavalcante commented 2 years ago

Cleaner facades for object construction.

use Swoole\StringObject as Str;

echo Str::from('Swoole Rocks')
    ->upper()
    ->append('!!!');