.dev/scripts/data_all/data_get_latest.php

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/env php
<?php

$self = __FILE__;
foreach (glob(dirname(__DIR__) . '/*/*get_latest*.php') as $path) {
    if ($path == $self) {
        continue;
    }
    echo PHP_EOL . $path . PHP_EOL . PHP_EOL;
    require $path;
}