add copyrights

This commit is contained in:
Dennis Eichhorn 2020-05-30 15:38:32 +02:00
parent e2554a7257
commit f23995005c
7 changed files with 32 additions and 2 deletions

View File

@ -151,8 +151,8 @@ class MazeGenerator
public static function render(array $maze) : string
{
$rendered = '';
foreach ($maze as $y => $row) {
foreach ($row as $x => $column) {
foreach ($maze as $row) {
foreach ($row as $column) {
$rendered .= $column;
}

View File

@ -9,6 +9,11 @@
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*
* Extended based on:
* MIT License
* © 2011-2012 Xueqiao Xu <xueqiaoxu@gmail.com>
* © PathFinding.js
*/
declare(strict_types=1);

View File

@ -9,6 +9,11 @@
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*
* Extended based on:
* MIT License
* © 2011-2012 Xueqiao Xu <xueqiaoxu@gmail.com>
* © PathFinding.js
*/
declare(strict_types=1);

View File

@ -9,6 +9,11 @@
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*
* Extended based on:
* MIT License
* © 2011-2012 Xueqiao Xu <xueqiaoxu@gmail.com>
* © PathFinding.js
*/
declare(strict_types=1);

View File

@ -9,6 +9,11 @@
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*
* Extended based on:
* MIT License
* © 2011-2012 Xueqiao Xu <xueqiaoxu@gmail.com>
* © PathFinding.js
*/
declare(strict_types=1);

View File

@ -9,6 +9,11 @@
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*
* Extended based on:
* GLGPL 2.1 License
* © 2012 - 2015 Marcus Bointon, 2010 - 2012 Jim Jagielski, 2004 - 2009 Andy Prevost
* © PHPMailer
*/
declare(strict_types=1);

View File

@ -9,6 +9,11 @@
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*
* Extended based on:
* GLGPL 2.1 License
* © 2012 - 2015 Marcus Bointon, 2010 - 2012 Jim Jagielski, 2004 - 2009 Andy Prevost
* © PHPMailer
*/
declare(strict_types=1);