herrera-io/dateinterval-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

A Symfony bundle for the DateInterval library for Doctrine.

dev-master / 1.0.x-dev 2013-02-22 00:22 UTC

This package is not auto-updated.

Last update: 2021-12-07 01:33:53 UTC


README

Build Status

A Symfony bundle for the DateInterval library for Doctrine.

Summary

The bundle will automatically

  • register the dateinterval Doctrine mapping type
  • add the DATE_INTERVAL DQL function

to the default entity manager (doctrine.orm.entity_manager).

Installation

Add it to your list of Composer dependencies:

$ composer require herrera-io/dateinterval-bundle=1.*

Add it to your app/AppKernel.php file:

<?php

public function registerBundles()
{
    $bundles = array(
        // ... snip ...
        new Herrera\Symfony\DateInterval\DateIntervalBundle()
        // ... snip ...
    );
}

Usage

In your entities

<?php

class MyEntity
{
    /**
     * @ORM\Column(type="dateinterval")
     */
    private $interval;
}

In your queries

SELECT j FROM Jobs j WHERE j.interval < DATE_INTERVAL('PT1H')