Giter Site home page Giter Site logo

Comments (3)

aik099 avatar aik099 commented on May 7, 2024

Construct for including file is a side effect. I recommend using auto-loader or disabling that particular inspection.

from php_codesniffer.

gsherwood avatar gsherwood commented on May 7, 2024

I see your point in this case, but that sniff just implements the PSR-1 standard: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md#23-side-effects

Which states:

"Side effects" include but are not limited to: generating output, explicit use of require or include, connecting to external services, modifying ini settings, emitting errors or exceptions, modifying global or static variables, reading from or writing to a file, and so on.

And then shows this example:

// side effect: loads a file
include "file.php";

I was not involved with the creation of PSR-1 and so I don't know if this was just overlooked or if the authors want you to only include class files using an autoloader. But I think the standard is fairly clear, even if it doesn't take this scenario into account.

The other point is that PHP_CodeSniffer can't go around looking for that file you included to find out if it includes side effects. So the message is a warning, which you can choose to ignore on a file-by-file basis if you'd like, or by coding the exception into a ruleset.xml file. That's really the most I can do for you in this case due to the way PHP_CodeSniffer works.

from php_codesniffer.

fulldecent avatar fulldecent commented on May 7, 2024

Thanks for the help, and I agree that this software is correct in implement the PSR-1 as specified. Since includes may or may not produce side effects and since it is impossible before runtime to know which file will be included then the rule is reasonable.

The problem here is that I was being lazy and trying to avoid the PHP-ism of autoloaders :-(

from php_codesniffer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.