Skip to content

Instantly share code, notes, and snippets.

@jonathaningram
Created August 17, 2012 01:06
Show Gist options
  • Save jonathaningram/3375012 to your computer and use it in GitHub Desktop.
Save jonathaningram/3375012 to your computer and use it in GitHub Desktop.
<?php
class OptionA
{
/**
* @var \DateTime $date
*/
private $date;
// the $date in the docblock seems redundant?
}
class OptionB
{
/**
* @var \DateTime
*/
private $date;
//
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment