Skip to content

Instantly share code, notes, and snippets.

@wilcorrea
Created November 22, 2016 15:32
Show Gist options
  • Select an option

  • Save wilcorrea/39a8fdc4b47281981cfd9a368b861c10 to your computer and use it in GitHub Desktop.

Select an option

Save wilcorrea/39a8fdc4b47281981cfd9a368b861c10 to your computer and use it in GitHub Desktop.
<?php
require dirname(__DIR__) . '/vendor/autoload.php';
use HeroProject\Connection;
$connection = new Connection();
$connection->echoThis('Composer is pretty cool!');
#--------
echo new HeroProject\Cape\Hero('Superman');
echo PHP_EOL;
#--------
use function HeroProject\Functions\echoThis;
echoThis('That all folks!');
#--------
use Stringy\Stringy;
echo Stringy::create('foo bar')->collapseWhitespace()->swapCase();
echo PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment