PHP Classes

File: resources/views/inspect.blade.php

Recommend this page to a friend!
  Classes of DeGraciaMathieu   PHP Line Length Detector   resources/views/inspect.blade.php   Download  
File: resources/views/inspect.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Line Length Detector
Detect the line length of PHP source code files
Author: By
Last change:
Date: 1 year ago
Size: 607 bytes
 

Contents

Class file image Download
<div>
    <table>
        <thead>
        <tr>
            <th>largest line</th>
            <th>average line</th>
        </tr>
        </thead>
        <tr>
            <td>{{ $statistic->max() }}</td>
            <td>{{ $statistic->average() }}</td>
        </tr>
    </table>
    <table>
        <thead>
        <tr>
            <th>lenght</th>
            <th>occurrence</th>
        </tr>
        </thead>
        @foreach($distribution->steps() as $step => $value)
        <tr>
            <td>{{ $step }}</td>
            <td>{{ $value }}</td>
        </tr>
        @endforeach()
    </table>
</div>