Layout changes by responses, fix NodeHeirarchy domains nolonger have default

This commit is contained in:
Deon George 2021-08-18 00:03:44 +10:00
parent 978843b5e3
commit 259ea01fd1
2 changed files with 9 additions and 2 deletions

View File

@ -63,6 +63,8 @@ abstract class Process
for ($c; $c<count($logo);$c++) for ($c; $c<count($logo);$c++)
$msg .= utf8_decode(Arr::get($logo,$c))."\r"; $msg .= utf8_decode(Arr::get($logo,$c))."\r";
$msg = utf8_decode(join("\r",static::msg_footer()))."\r";
return $msg; return $msg;
} }
@ -81,4 +83,11 @@ abstract class Process
'ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ' 'ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ'
]; ];
} }
protected static function msg_footer(): array
{
return [
'ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ'
];
}
} }

View File

@ -23,7 +23,6 @@ class NodeHierarchy extends Seeder
'name'=>'domain-a', 'name'=>'domain-a',
'active'=>TRUE, 'active'=>TRUE,
'public'=>TRUE, 'public'=>TRUE,
'default'=>FALSE,
'created_at'=>Carbon::now(), 'created_at'=>Carbon::now(),
'updated_at'=>Carbon::now(), 'updated_at'=>Carbon::now(),
]); ]);
@ -33,7 +32,6 @@ class NodeHierarchy extends Seeder
'name'=>'domain-b', 'name'=>'domain-b',
'active'=>TRUE, 'active'=>TRUE,
'public'=>TRUE, 'public'=>TRUE,
'default'=>FALSE,
'created_at'=>Carbon::now(), 'created_at'=>Carbon::now(),
'updated_at'=>Carbon::now(), 'updated_at'=>Carbon::now(),
]); ]);