for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chriscreates\Blog\Events;
use Chriscreates\Blog\Post;
class PostViewed
{
/**
* The post instance.
*
* @var Post
*/
public $post;
* Create a new event instance.
* @param Post $post
public function __construct(Post $post)
$this->post = $post;
}