Skip to content

Instantly share code, notes, and snippets.

@bilalucar
Created February 20, 2017 08:40
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 bilalucar/cedd5900614c1ca350c047e3d0147e29 to your computer and use it in GitHub Desktop.
Save bilalucar/cedd5900614c1ca350c047e3d0147e29 to your computer and use it in GitHub Desktop.
PSR-1
<?php
// side effect: change ini settings
ini_set('error_reporting', E_ALL);
// PHP 5.3 and later:
namespace ProjeAdi\Model;
class Foo
{
}
// PHP 5.2.x and earlier:
class ProjeAdi_Model_Foo
{
}
class Foo
{
const VERSION = '1.0';
const DATE_APPROVED = '2012-06-01';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment