Commit b8086ffe authored by Emiliano Balbuena's avatar Emiliano Balbuena

(chore): Disable timestamp constrain on old algorithms

1 merge request!407Top Algorithm
Pipeline #100986242 passed with stages
in 6 minutes and 56 seconds
......@@ -14,7 +14,7 @@ class Chronological implements SortingAlgorithm
*/
public function isTimestampConstrain(): bool
{
return false;
return false; // Old period-based algorithms shouldn't be constrained
}
/**
......
......@@ -15,7 +15,7 @@ class Controversial implements SortingAlgorithm
*/
public function isTimestampConstrain(): bool
{
return true;
return false; // Old period-based algorithms shouldn't be constrained
}
/**
......
......@@ -16,7 +16,7 @@ class Hot implements SortingAlgorithm
*/
public function isTimestampConstrain(): bool
{
return true;
return false; // Old period-based algorithms shouldn't be constrained
}
/**
......
......@@ -15,7 +15,7 @@ class Top implements SortingAlgorithm
*/
public function isTimestampConstrain(): bool
{
return true;
return false; // Old period-based algorithms shouldn't be constrained
}
/**
......
Please register or to comment