Pelzini

This is the code documentation for the Pelzini project

class FakeNamespaceDirsTransformer

This is a transformer that does quality checks on the codebase

It checks that the documentation has the required tags. Currently the 'required tags' are only the summary

The documentation is created in a report called the Quality check report.

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-07-27
**/
class NewClassName extends FakeNamespaceDirsTransformer {
    
    /**
    * Set up the quality check transformer
    **/
    public function __construct () {
        // Method code goes here
    }
    
    /**
    * Transforms the data model before outputting.
    * 
    * This transformer generates a report of objects that do not have good enough documentation
    **/
    public function transform (array $parser_model) {
        // Method code goes here
    }
    
}
?>