Skip to content

Instantly share code, notes, and snippets.

@charset "utf-8";
tab .tab-text,
tab .tab-text-stack * {
margin: 0px;
padding: 0px;
max-width: 0px;
display: none;
}
<?php
/**
* @see https://raw.githubusercontent.com/php/php-src/php-7.0.0beta2/UPGRADING
*/
/**
* Indirect variable, property and method references are now interpreted with
* left-to-right semantics. Some examples:
*/
$$foo['bar']['baz']; // interpreted as ($$foo)['bar']['baz']
@shimooka
shimooka / TimestampsConstraint.php
Created April 13, 2012 08:00
timestamps_with_constraintテーブル用Entityクラス
<?php
namespace Acme\TimestampBundle\Entity;
use Acme\TimestampBundle\Component\Validator\Constraints as AcmeAssert;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Table(name="timestamps_with_constraint")