Skip to content

Instantly share code, notes, and snippets.

View SpacefulSpecies's full-sized avatar

Spaceful Species SpacefulSpecies

View GitHub Profile
@SpacefulSpecies
SpacefulSpecies / functions.php
Created September 22, 2015 17:36
Phpstorm 9.0.2 bug reproduction: Namespaced functions not detected
<?php
namespace Foo;
/**
* @return \DateTime
*/
function getDateTime() {
return new \DateTime();
}
@SpacefulSpecies
SpacefulSpecies / gist:2684f62675630978dbff
Last active August 29, 2015 14:15
Phpstorm 8.0.3: Typehint error with nullable static
<?php
// Simple late static binding example
class A
{
/**
* @return static
*/
public static function create()
{