Method createTopicContentModelFromRequest
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
private function createTopicContentModelFromRequest(FormRequest $request, Topic $topic): Model
{
$class = $request->input('topicable_type');
if (!in_array($class, $this->contentClasses)) {
Function updateFromRequest
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function updateFromRequest(UpdateTopicAPIRequest $request): Topic
{
$topic = $request->getTopic()->loadMissing('topicable');
if ($request->has('topicable_type')) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function getRulesForTopicContentUpdate
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
private function getRulesForTopicContentUpdate(FormRequest $request, TopicContentContract $topicContent)
{
// we want to do partial update, so we add 'sometimes' to all rules
$partialRules = array_map(fn ($field_rules) => is_array($field_rules) ? array_merge(['sometimes'], $field_rules) : 'sometimes' . $field_rules, $topicContent::rules());
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function createTopicContentModelFromRequest
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function createTopicContentModelFromRequest(FormRequest $request, Topic $topic): Model
{
$class = $request->input('topicable_type');
if (!in_array($class, $this->contentClasses)) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function deleteModel
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function deleteModel(Topic $topic): ?bool
{
if ($topic->delete()) {
$topicable = $topic->topicable;
if (is_a($topicable, AbstractTopicFileContent::class)) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"