🧲 New features Custom user role permissions Employee edit form updated Employee daily task list Attendance and employee distribution charts on dashboard Improvements to company structure and company assets module Improved tables for displaying data in several modules Faster data loading (specially for employee module) Initials based profile pictures Re-designed login page Re-designed user profile page Improvements to filtering New REST endpoints for employee qualifications 🐛 Bug fixes Fixed, issue with managers being able to create performance reviews for employees who are not their direct reports Fixed, issues related to using full profile image instead of using smaller version of profile image Changing third gender to other Improvements and fixes for internal frontend data caching
26 lines
758 B
PHP
Executable File
26 lines
758 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
/**
|
|
* PHP_CodeSniffer tokenizes PHP code and detects violations of a
|
|
* defined set of coding standards.
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* @category PHP
|
|
* @package PHP_CodeSniffer
|
|
* @author Greg Sherwood <gsherwood@squiz.net>
|
|
* @author Marc McIntyre <mmcintyre@squiz.net>
|
|
* @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
|
|
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
|
|
* @link http://pear.php.net/package/PHP_CodeSniffer
|
|
*/
|
|
|
|
if (is_file(dirname(__FILE__).'/../CodeSniffer/CLI.php') === true) {
|
|
include_once dirname(__FILE__).'/../CodeSniffer/CLI.php';
|
|
} else {
|
|
include_once 'PHP/CodeSniffer/CLI.php';
|
|
}
|
|
|
|
$cli = new PHP_CodeSniffer_CLI();
|
|
$cli->runphpcs();
|