Skip to content

Instantly share code, notes, and snippets.

@Mulkave
Created June 8, 2016 20:56
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 Mulkave/2f4d4791089e2e7e350ed785964ac144 to your computer and use it in GitHub Desktop.
Save Mulkave/2f4d4791089e2e7e350ed785964ac144 to your computer and use it in GitHub Desktop.
<?php
namespace Directory\Domains\Queue;
abstract class AbstractQueue
{
protected $name = '';
public function __toString()
{
return $this->name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment