Created
January 31, 2013 12:56
-
-
Save smichaelsen/4682661 to your computer and use it in GitHub Desktop.
This is a usage example for http://forge.typo3.org/issues/45022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
class MyClass { | |
/** | |
* @publicCallDeprecated Since 6.1. Will be protected 2 versions later | |
*/ | |
public function doStuff() { | |
\TYPO3\CMS\Core\Utility\GeneralUtility::logDeprecatedPublicMethodCall(); | |
// do stuff | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment