Fix StyleCI issues

This commit is contained in:
Matthew Penner 2020-04-04 16:24:58 -06:00
parent 454ce6ce45
commit 142bf16aae
9 changed files with 27 additions and 34 deletions

View file

@ -244,7 +244,8 @@ class Node extends Validable
* @param int $disk
* @return bool
*/
public function isViable(int $memory, int $disk): bool {
public function isViable(int $memory, int $disk): bool
{
$memoryLimit = $this->memory * (1 + ($this->memory_overallocate / 100));
$diskLimit = $this->disk * (1 + ($this->disk_overallocate / 100));