← Home ← Codex ← DEBT
Browse by Category
+ added · updated 7d
🤖 AI Guestbook — Style educational data only
| |
Last 30 days
6 pings — 2026-05-26 T 24 pings — 2026-05-27 W 53 pings — 2026-05-28 T 4 pings — 2026-05-29 F 17 pings — 2026-05-30 S 16 pings — 2026-05-31 S 16 pings — 2026-06-01 M 9 pings — 2026-06-02 T 22 pings — 2026-06-03 W 56 pings — 2026-06-04 T 52 pings — 2026-06-05 F 55 pings — 2026-06-06 S 75 pings — 2026-06-07 S 73 pings — 2026-06-08 M 38 pings — 2026-06-09 T 21 pings — 2026-06-10 W 20 pings — 2026-06-11 T 27 pings — 2026-06-12 F 11 pings — 2026-06-13 S 18 pings — 2026-06-14 S 15 pings — 2026-06-15 M 9 pings — 2026-06-16 T 9 pings — 2026-06-17 W 18 pings — 2026-06-18 T 6 pings — 2026-06-19 F 8 pings — 2026-06-20 S 21 pings — 2026-06-21 S 27 pings — 2026-06-22 M 20 pings — Yesterday T 26 pings — Today W
Claude 24SEMrush 1PetalBot 1
PetalBot 13Google 3SEMrush 3Bing 1
Amazonbot 423Scrapy 300Perplexity 293ChatGPT 224Ahrefs 207Google 179SEMrush 125Unknown AI 88Claude 79Bing 54Meta AI 47PetalBot 30Majestic 20Yandex 15Sogou 7DuckDuckGo 3Common Crawl 2Qwen 1
crawler 1.9k crawler_json 158 pre-tracking 16
Category total2.1k pings Terms pinged48 / 48 Distinct agents17
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Deep Nesting PHP 5.0+ 🧠 5
Code indented 3+ levels deep — guard clauses and early returns can flatten most deep nesting.
3mo ago Style beginner
EditorConfig for PHP Projects
A .editorconfig file enforces consistent indentation, line endings, and charset across all editors without relying on individual developer setup.
3mo ago Style beginner
Fluent Naming for Boolean Methods 🧠 1
Prefix boolean-returning methods with is, has, can, should, or was so conditionals read as natural English sentences.
3mo ago Style beginner
Guard Clause Pattern PHP 5.0+ 🧠 4
Return early from a function when a precondition fails, eliminating deeply nested if-else structures.
3mo ago Style beginner
Magic Strings
Raw string literals used directly in code as identifiers or flags — prone to typos, hard to refactor, and lacking IDE support.
3mo ago Style beginner
Method Length Guidelines
Short methods (ideally under 10–20 lines) are easier to understand, test, and name — length is a proxy for complexity.
3mo ago Style beginner
Mixed Indentation
A file using both tabs and spaces for indentation — causes misalignment across editors and tools.
3mo ago Style beginner
Naming Conventions PHP 5.0+ 🧠 1
Consistent naming rules for classes, methods, variables, and constants that make code self-documenting and predictable.
3mo ago Style beginner
PHP-CS-Fixer vs PHP_CodeSniffer PHP 7.1+
Two PHP code style tools: PHP_CodeSniffer detects and optionally fixes violations, PHP-CS-Fixer auto-fixes code to match a configured style — both enforce consistent formatting across a codebase.
3mo ago Style beginner
PHPCS + PHPStan in CI (Workflow Guide) PHP 5.0+ 🧠 4
Running PHP_CodeSniffer for style and PHPStan for type/logic errors as separate CI steps — each catching a distinct class of problem.
3mo ago Style intermediate
PHPDoc / Docblock PHP 5.0+ 🧠 1
Structured comment blocks that document functions, classes, and properties — read by IDEs, static analysis tools, and documentation generators.
3mo ago Style beginner
PHPStan Levels 0–9 Explained PHP 7.1+ 🧠 7
PHPStan's 10 strictness levels — from basic undefined variable checks (0) to full generic type inference and strict mixed handling (9).
3mo ago Style intermediate
Psalm Type Annotations PHP 7.1+ 🧠 1
Psalm's docblock annotations — @param, @return, @template, @psalm-type — extend PHP's native type system to express generics, aliases, and complex types.
3mo ago Style intermediate
PSR-11: Container Interface PHP 5.3+
A standard ContainerInterface with get() and has() enabling framework-agnostic service resolution from any PSR-11-compliant DI container.
3mo ago Style intermediate
PSR-12 Coding Standard PHP 7.1+
The PHP-FIG extended coding style guide that supersedes PSR-2, covering namespaces, imports, classes, and control structures.
3mo ago Style beginner
PSR-14: Event Dispatcher PHP 7.2+
Standard EventDispatcherInterface and ListenerProviderInterface for framework-agnostic event dispatch and handler registration.
3mo ago Style intermediate
PSR-15: HTTP Handlers & Middleware PHP 7.0+
Defines RequestHandlerInterface and MiddlewareInterface for composable, framework-agnostic HTTP middleware pipelines.
3mo ago Style intermediate
PSR-17: HTTP Factories PHP 7.1+
Standard factory interfaces for creating PSR-7 HTTP objects — decoupling library code from any specific PSR-7 implementation.
3mo ago Style intermediate
PSR-1: Basic Coding Standard PHP 5.3+
The foundational PHP-FIG standard defining file encoding, PHP tags, namespace/class naming, and the single-responsibility rule for files.
3mo ago Style beginner
PSR-3: Logger Interface PHP 5.3+
A common LoggerInterface with eight RFC 5424 severity methods (emergency, alert, critical, error, warning, notice, info, debug).
3mo ago Style beginner
✓ schema.org compliant