Skip to content

Instantly share code, notes, and snippets.

View useless-stuff's full-sized avatar
🤓
Learning

1317 useless-stuff

🤓
Learning
View GitHub Profile
@useless-stuff
useless-stuff / php_iterator.php
Last active February 16, 2016 10:51
PHP - Iterator
<?php
/**
* Class AdsTypeCollection
*/
class AdsTypeCollection implements Iterator{
const PANORAMA_980x120 = 'PANORAMA_980x120';
const TOP_BANNER = 'TOP_BANNER_930x180';
const NETBOARD = 'NETBOARD_580x400';
const VERTICAL_RECTANGLE = 'VERTICAL_RECTANGLE_240x400';
@useless-stuff
useless-stuff / php_closure.php
Last active February 16, 2016 10:11
PHP - Closure
<?php
/**
* Class Basket
*/
class Basket
{
protected $productsQuantityCollection;
protected $productsCollection;
protected $tax = 1.2;