dothiv/DothivContentfulBundle

View on GitHub
Event/ContentfulContentTypeEvent.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dothiv\Bundle\ContentfulBundle\Event;

use Dothiv\Bundle\ContentfulBundle\Item\ContentfulContentType;
use Symfony\Component\EventDispatcher\Event;

class ContentfulContentTypeEvent extends Event
{
    /**
     * @var ContentfulContentType
     */
    private $contentType;

    /**
     * @param ContentfulContentType $contentType
     */
    public function __construct(ContentfulContentType $contentType)
    {
        $this->contentType = $contentType;
    }

    /**
     * @return ContentfulContentType
     */
    public function getContentType()
    {
        return $this->contentType;
    }

    /**
     * @param ContentfulContentType $contentType
     */
    public function setContentType($contentType)
    {
        $this->contentType = $contentType;
    }
}