mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
add copyrights
This commit is contained in:
parent
e2554a7257
commit
f23995005c
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user