Your IP : 216.73.216.38


Current Path : /home/maglabs/it/dev/tests/static/framework/Magento/TestFramework/CodingStandard/
Upload File :
Current File : /home/maglabs/it/dev/tests/static/framework/Magento/TestFramework/CodingStandard/ToolInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * Code standard tool wrapper interface
 */
namespace Magento\TestFramework\CodingStandard;

interface ToolInterface
{
    /**
     * Whether the tool can be ran on the current environment
     *
     * @return bool
     */
    public function canRun();

    /**
     * Run tool for files specified
     *
     * @param array $whiteList Files/directories to be inspected
     * @return int
     */
    public function run(array $whiteList);
}

?>