Skip to content

Instantly share code, notes, and snippets.

@skurfuerst
Created July 28, 2011 11:34
Show Gist options
  • Save skurfuerst/1111419 to your computer and use it in GitHub Desktop.
Save skurfuerst/1111419 to your computer and use it in GitHub Desktop.
ReST Phoenix
*Example: Declaration of an aspect*
.. code-block::php
namespace F3\MySecurityPackage;
/**
* An aspect implementing security for Foo
*
* @author John Doe <john@typo3.org>
* @aspect
*/
class FooSecurityAspect {
}
*Example: Declaration of an aspect*::
namespace F3\MySecurityPackage;
/**
* An aspect implementing security for Foo
*
* @author John Doe <john@typo3.org>
* @aspect
*/
class FooSecurityAspect {
}
@skurfuerst
Copy link
Author

Example: Declaration of an aspect

.. code-block::php

namespace F3\MySecurityPackage;

/**
 * An aspect implementing security for Foo
 *
 * @author  John Doe <john@typo3.org>
 * @aspect
 */
class FooSecurityAspect {

}

Example: Declaration of an aspect::

namespace F3\MySecurityPackage;

/**
 * An aspect implementing security for Foo
 *
 * @author  John Doe <john@typo3.org>
 * @aspect
 */
class FooSecurityAspect {

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment