Skip to content

Instantly share code, notes, and snippets.

@geovanerocha
Created September 24, 2012 17:35
Show Gist options
  • Save geovanerocha/3777197 to your computer and use it in GitHub Desktop.
Save geovanerocha/3777197 to your computer and use it in GitHub Desktop.
Declaring namespaces 2 @ PHP.
<?php
namespace Bar;
class FooClass
{
public function showDifference()
{
echo 'I love namespaces!';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment