-
-
Save anunay/83b60711bfaaa4fd9e94a03c8c6f91ce to your computer and use it in GitHub Desktop.
An example of the coding standards by AnomalyLabs.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace Acme; | |
/** | |
* Class FooBar | |
* | |
* @link http://anomaly.is/foo-bar | |
* @author AnomalyLabs, Inc. <[email protected]> | |
* @author Ryan Thompson <[email protected]> | |
* @package Acme | |
*/ | |
class FooBar | |
{ | |
/** | |
* The foo value. | |
* | |
* @var int | |
*/ | |
protected $foo = 20; | |
/** | |
* The bar value. | |
* | |
* @var int | |
*/ | |
protected $bar; | |
/** | |
* Create a new FooBar instance. | |
* | |
* @param string $bar | |
*/ | |
public function __construct($bar) | |
{ | |
$this->bar = $bar; | |
} | |
/** | |
* Do something awesome. | |
* | |
* @param string $dummy | |
* @param array $options | |
* @return string|null | |
* @throws \Exception | |
*/ | |
public function awesome($dummy, array $options = []) | |
{ | |
$mergedOptions = array_merge( | |
[ | |
'some_default' => 'values', | |
'another_default' => 'more values', | |
], | |
$options | |
); | |
if ($dummy === true) { | |
return 'wowzers'; | |
} | |
if ($dummy === 'something') { | |
if ($mergedOptions['some_default'] === 'values') { | |
return substr($dummy, 0, 5); | |
} | |
return ucwords($dummy); | |
} | |
throw new \Exception(sprintf('Unrecognized dummy option "%s"', $dummy)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment