Skip to content

Instantly share code, notes, and snippets.

@yukikaoru
Created December 12, 2013 09:20
Show Gist options
  • Save yukikaoru/7925271 to your computer and use it in GitHub Desktop.
Save yukikaoru/7925271 to your computer and use it in GitHub Desktop.
This sample code is verify that "Unused private method" inspection does not work in PHP Plug-in 133.51
<?php
namespace example;
class Foo
{
public function hoge()
{
return "{$this->fuga()}";
}
private function fuga()
{
return '';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment