Layout changes by responses, fix NodeHeirarchy domains nolonger have default
This commit is contained in:
parent
978843b5e3
commit
259ea01fd1
@ -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 [
|
||||||
|
'ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ'
|
||||||
|
];
|
||||||
|
}
|
||||||
}
|
}
|
@ -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(),
|
||||||
]);
|
]);
|
||||||
|
Loading…
Reference in New Issue
Block a user