Skip to content

Latest commit

 

History

History
221 lines (177 loc) · 3 KB

CommentHeaders.md

File metadata and controls

221 lines (177 loc) · 3 KB

Comment Headers

PHP Headers

PHP header for PHP file.

/**
 * TITLE
 *
 * TBD
 *
 * PHP version 8.1.2
 *
 * @package    kzarshenas/crazyphp
 * @author     kekefreedog <[email protected]>
 * @copyright  2022-2024 Kévin Zarshenas
 */

Separator in PHP File.

/** Separator
 ******************************************************
 */

PHP header for PHP Class.

/**
 * TITLE
 *
 * TBD
 *
 * @package    kzarshenas/crazyphp
 * @author     kekefreedog <[email protected]>
 * @copyright  2022-2024 Kévin Zarshenas
 */
class Toto{}

PHP header in PHP Methods

class Toto{

    /**
     * TITLE
     *
     * TBD
     */
    public function titi(){}

}

Separator in PHP Class

class Toto{

    /** Public Static Methods
     ******************************************************
     */

}

YAML Headers

# #
# TITLE
#
# TBD
#
# YAML version 1.2
#
# @package    kzarshenas/crazyphp
# @author     kekefreedog <[email protected]>
# @copyright  2022-2024 Kévin Zarshenas
# #

TS Headers

TS header for TS file.

/**
 * TITLE
 *
 * TBD
 *
 * @package    kzarshenas/crazyphp
 * @author     kekefreedog <[email protected]>
 * @copyright  2022-2024 Kévin Zarshenas
 */

Separator in TS File.

/** Separator
 ******************************************************
 */

TS header for TS Namespace.

/**
 * TITLE
 *
 * TBD
 *
 * @package    kzarshenas/crazyphp
 * @author     kekefreedog <[email protected]>
 * @copyright  2022-2024 Kévin Zarshenas
 */
namespace Toto {}

### TS header for TS Class.

```ts
/**
 * TITLE
 *
 * TBD
 *
 * @package    kzarshenas/crazyphp
 * @author     kekefreedog <[email protected]>
 * @copyright  2022-2024 Kévin Zarshenas
 */
class Toto {}

TS header in TS Methods

class Toto {

    /**
     * TITLE
     *
     * TBD
     */
    public titi(){}

}

Separator in TS Class

class Toto {

    /** Public Static Methods
     ******************************************************
     */

}

HBS Headers

HBS header for HBS file.

{{!--
  ! TITLE
  !
  ! TBD
  !
  ! HANDLEBARS.JS version 4.7.7
  !
  ! @package    kzarshenas/crazyphp
  ! @author     kekefreedog <kevin.zarshenas@gmail.com>
  ! @copyright  2022-2024 Kévin Zarshenas
  !--}}

SCSS Headers

SCSS header for SCSS file.

/// /// ///
/// Color Class Generator
///
/// Define class "color" and "color-text"
///
/// @package    kzarshenas/crazyphp
/// @author     kekefreedog <[email protected]>
/// @copyright  2022-2024 Kévin Zarshenas
/// /// ///

SCSS header for SCSS Function

/// Function Name
/// 
/// Description
/// 
/// @author Kevin Zarshenas
/// 
/// @param {Number} $value - Value to convert
/// @param {String} $unit - Unit to convert to
/// @return {Number} Converted angle

SCSS Separator

/// Public Static Methods
///////////////////////////////////////////////////////
///