Skip to content

Instantly share code, notes, and snippets.

@pmjones
Created June 7, 2015 14:30
Show Gist options
  • Save pmjones/65cb682a75d275d2b880 to your computer and use it in GitHub Desktop.
Save pmjones/65cb682a75d275d2b880 to your computer and use it in GitHub Desktop.
<?php
class MiddlewareQueue
{
protected $queue = [];
public function add($spec)
{
$this->queue[] = $spec;
}
public function asArray()
{
return $this->queue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment