Skip to content

Instantly share code, notes, and snippets.

@jonnybarnes
Created August 6, 2019 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonnybarnes/c65f3233755fa62e669233971c16e69a to your computer and use it in GitHub Desktop.
Save jonnybarnes/c65f3233755fa62e669233971c16e69a to your computer and use it in GitHub Desktop.
Used in my PHP Traits post for BuildEmpire
<?php
namespace Foo;
trait Bar
{
public function baz(string $value): string
{
// modify $value in some way
return mb_strtoupper($value)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment