Skip to content

Instantly share code, notes, and snippets.

@ojhaujjwal
Created October 16, 2017 15:53
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 ojhaujjwal/0cd1b259227705371b36f37c82cf8c6c to your computer and use it in GitHub Desktop.
Save ojhaujjwal/0cd1b259227705371b36f37c82cf8c6c to your computer and use it in GitHub Desktop.
<?php
namespace App\Message;
use Bernard\Message;
abstract class AbstractMessage implements Message
{
public function getName()
{
return get_class($this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment