Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Coding Standard Laravel Package

symplify/coding-standard

Opinionated PHP coding standard with 23 fixers for clean, consistent, readable code—no config required. Designed to run with Symplify Easy Coding Standard (ECS); install via Composer and auto-fix formatting like arrays, strict types spacing, line length, and method chaining.

View on GitHub
Deep Wiki
Context7
13.1.1

Doc block malform rules: one rule → 10 single-task fixers

The monolithic ParamReturnAndVarTagMalformsFixer (and its internal "malform worker" system) has been split into focused, single-responsibility fixers, registered together in the new docblock set. Each one fixes exactly one kind of [@param](https://github.com/param) / [@return](https://github.com/return) / [@var](https://github.com/var) malform, and all of them handle the [@phpstan-](https://github.com/phpstan-) and [@psalm-](https://github.com/psalm-) prefixed variants too.

New rules & what they change

AddMissingParamNameFixer — add a missing variable name to a [@param](https://github.com/param)

 /**
- * [@param](https://github.com/param) string
+ * [@param](https://github.com/param) string $name
  */
 function getPerson($name)
 {
 }

AddMissingVarNameFixer — add a missing variable name to an inline [@var](https://github.com/var)

-/** [@var](https://github.com/var) int */
+/** [@var](https://github.com/var) int $value */
 $value = 1000;

DoubleAsteriskInlineVarFixer (new capability) — use a double-asterisk /** doc block for an inline [@var](https://github.com/var)

-/* [@var](https://github.com/var) int $variable */
+/** [@var](https://github.com/var) int $variable */
 $variable = 5;

FixParamNameTypoFixer — fix a typo in the [@param](https://github.com/param) variable name to match the real argument

 /**
  * [@param](https://github.com/param) string $one
- * [@param](https://github.com/param) string $twoTypo
+ * [@param](https://github.com/param) string $two
  */
 function anotherFunction(string $one, string $two)
 {
 }

RemoveDeadParamFixer — remove a dead [@param](https://github.com/param) line that has only a name and no type

 /**
  * [@param](https://github.com/param) string $name
- * [@param](https://github.com/param) $age
  */
 function withDeadParam(string $name, $age)
 {
 }

RemoveParamNameReferenceFixer — remove the reference & from a [@param](https://github.com/param) variable name

 /**
- * [@param](https://github.com/param) string &$name
+ * [@param](https://github.com/param) string $name
  */
 function paramReference($name)
 {
 }

RemoveSuperfluousReturnNameFixer — remove a superfluous variable name from a [@return](https://github.com/return)

 /**
- * [@return](https://github.com/return) int $value
+ * [@return](https://github.com/return) int
  */
 function function1(): int
 {
 }

RemoveSuperfluousVarNameFixer — remove a superfluous variable name from a property [@var](https://github.com/var)

 /**
- * [@var](https://github.com/var) string $property
+ * [@var](https://github.com/var) string
  */
 private $property;

SingleLineInlineVarDocBlockFixer — collapse a multi-line inline [@var](https://github.com/var) doc block into a single line

-/**
- * [@var](https://github.com/var) int $value
- */
+/** [@var](https://github.com/var) int $value */
 $value = 1000;

SwitchedTypeAndNameFixer — reorder switched type and variable name in [@param](https://github.com/param) / [@var](https://github.com/var)

 /**
- * [@param](https://github.com/param) $a string
- * [@param](https://github.com/param) $b string|null
+ * [@param](https://github.com/param) string $a
+ * [@param](https://github.com/param) string|null $b
  */
 function test($a, string $b = null): string
 {
 }

Internals

  • Added an AbstractDocBlockFixer base class shared by the new fixers.
  • Removed MalformWorkerInterface and the MalformWorker/ implementations (DeadParamMalformWorker, InlineVarMalformWorker, ParamNameReferenceMalformWorker).
  • Each new fixer ships with its own test, fixtures, and config; the rule count in the README went from 14 → 23.

Full changelog: https://github.com/symplify/coding-standard/pull/86

12.4.3

What's Changed

Full Changelog: https://github.com/symplify/coding-standard/compare/12.4.2...12.4.3

12.4.2
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
codraw/entity-migrator
codraw/doctrine-extra
codraw/aws-tool-kit
codraw/validator
codraw/workflow
codraw/open-api
codraw/cron-job
codraw/process
codraw/log
nexmo/api-specification
capell-app/block-library
axium/identity
cetria/laravel-dummy-models
cetria/reflection-helper
agropredict/sso-auth-bundle
evolvestudio/spam-protection
datacore/hub-sdk
develia/commons
cuci/prototurk-sdk
cuci/prototurk-sdk-symfony