Showing posts with label education. Show all posts
Showing posts with label education. Show all posts

Wednesday, January 8, 2020

About YAML

YAML (a recursive acronym for "YAML Ain't Markup Language")

  • YAML is data serialization language. A language for make a file for data interchange and export between different system.
  • Structure is shown through indentation (one or more spaces). If you has learn some modern programming language. YAML has similar structure with python programming language and ruby programming language.
  • Sequence items are denoted by a dash, and key value pairs within a map are separated by a colon. Sequence items is like record, key value pairs is like record value, if you has learn some database knowledge.
  • YAML is used in modern Joomla.

PHP Documentor

About phpDocumentor

  • phpDocumentor is tool written in PHP.
  • phpDocumentor for documenting php source code.
  • phpDocumentor has an ugly searching function.

phpdoc tags

put inside multiline comment /**/

@package
@since
@method
@param
@global
@plugin
@link

package=namespace
since=version
method=function
param=function parameter

referensi:
https://docs.phpdoc.org/