Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RexStan-Überprüfung: fragments/neues/list.php #107

Merged
merged 1 commit into from
Sep 8, 2024
Merged

RexStan-Überprüfung: fragments/neues/list.php #107

merged 1 commit into from
Sep 8, 2024

Conversation

christophboecker
Copy link
Member

'PHPDoc tag @var for variable $posts contains generic class rex_yform_manager_collection but does not specify its types: T'

Da fehlt die Angabe der Collection-Inhalte, also der ModelClass Entry:
/** @var rex_yform_manager_collection<Entry> $posts */

''Only booleans are allowed in an if condition, FriendsOfRedaxo\Neues\Entry|null given.''

Die Fehlermeldung führt etwas in die falsche Richtung; das eigentliche Problem ist ein anderes. Hier stimmt nämlich die
Struktur nicht so ganz.

        <?php foreach ($posts as $post) : ?>
            <?php if($post) { ?>
            <div class="col">
                <?php
                $fragment = new rex_fragment();
                $fragment->setVar('post', $post);
                echo $fragment->parse('neues/list-entry.php');
                ?>
            </div>
            <?php } else { ?>
                <div class="placeholder">
                    <?php if(rex_config::get('neues', 'no_entries_placeholder')) { ?>
                    <p><?= rex_i18n::msg('no_entries_placeholder') ?></p>
                    <?php } ?>
                </div>
            <?php } ?>
        <?php endforeach ?>

Da die Schleife nur durchlaufen wird, wenn es auch $posts gibt, ist die Abfrage auf if($post) ...
nicht erforderlich. Es gibt den Post, sonst wäre er nicht in der Collection. Somit wird der else-Zweig (no entries)
nie erreicht, auch nicht bei einer leeren Liste. Daher den Code etwas umgebaut.

'Only booleans are allowed in an if condition, mixed given.'

Da rex_config::get(...) als Default null liefert, möchte RexStan dass expliziet darauf abgefragt wird.

@alxndr-w alxndr-w self-requested a review September 8, 2024 16:25
@alxndr-w alxndr-w merged commit b855fd7 into main Sep 8, 2024
1 check passed
@alxndr-w alxndr-w deleted the cb-13 branch September 8, 2024 16:25
@alxndr-w
Copy link
Member

alxndr-w commented Sep 8, 2024

@eaCe für dich zur Info

@eaCe
Copy link
Member

eaCe commented Sep 9, 2024

Danke. Statt count() sollte man auf den Posts auch ->isEmpty() oder ->count() nutzen können

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants