PHP Classes

File: src/Plugin/Code/MinifierInterface.php

Recommend this page to a friend!
  Packages of Thierry Feuzeu   Jaxon   src/Plugin/Code/MinifierInterface.php   Download  
File: src/Plugin/Code/MinifierInterface.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change:
Date: 6 months ago
Size: 343 bytes
 

Contents

Class file image Download
<?php

namespace Jaxon\Plugin\Code;

interface
MinifierInterface
{
   
/**
     * Minify javascript code
     *
     * @param string $sJsFile The javascript file to be minified
     * @param string $sMinFile The minified javascript file
     *
     * @return bool
     */
   
public function minify(string $sJsFile, string $sMinFile): bool;
}