¡@

Home 

php Programming Glossary: coupled

Use global variables in a class

http://stackoverflow.com/questions/11923272/use-global-variables-in-a-class

reason why the above is bad is because you have tightly coupled the db instance thus the DB_MySQL class to that method class... fetch x Again this is a hidden dependency and it tightly coupled the DB_MySQL class to the method class. Because of this it is.. at the same time. And what if you have multiple tightly coupled dependencies Now you are suddenly testing several classes with..

PHP: Real world OOP example

http://stackoverflow.com/questions/1343619/php-real-world-oop-example

of retrieving a directory listing. The data variables are coupled to the logic class functions i.e methods that use the dta. But..

Use Zend Framework components without the actual framework?

http://stackoverflow.com/questions/1402989/use-zend-framework-components-without-the-actual-framework

with few dependencies on other components. This loosely coupled architecture allows developers to use components individually...

How easy is it to extend / modify Zend Framework?

http://stackoverflow.com/questions/1502063/how-easy-is-it-to-extend-modify-zend-framework

1.9. I really like how its component library is loosely coupled. However from looking at different tutorials it seems very verbose...

Proper Repository Pattern Design in PHP?

http://stackoverflow.com/questions/16176990/proper-repository-pattern-design-in-php

learning TDD in PHP and I'm realizing that my database is coupled much too closely with the rest of my application. I've read..

Basic authentication and session management library for PHP?

http://stackoverflow.com/questions/1975260/basic-authentication-and-session-management-library-for-php

But Zend Framework components are also loosely coupled making it easy to use just a few components in a web application..

PHP pagination class

http://stackoverflow.com/questions/2465999/php-pagination-class

Zend_Paginator for the following reasons It's loosely coupled and doesn't require the entire library. The ZF community is..

Is there a good/robust PHP Lint or code quality tool? [closed]

http://stackoverflow.com/questions/3601031/is-there-a-good-robust-php-lint-or-code-quality-tool

interdependencies in the code to try to determine overly coupled and hence hard to maintain code... I also use Hudson and Phing..

How to independently use single Zend Framework component like XML-RPC or REST?

http://stackoverflow.com/questions/4314960/how-to-independently-use-single-zend-framework-component-like-xml-rpc-or-rest

XML RPC or REST Zend framework is well known for loosely coupled components. I would like to use XML RPC from zend framework..

Properly calling the database from Model in an MVC application?

http://stackoverflow.com/questions/5895805/properly-calling-the-database-from-model-in-an-mvc-application

Besides the obvious logic issues if your Model is tightly coupled with underlaying Database it makes the code extremely hard to..

RedBean ORM performance

http://stackoverflow.com/questions/7765070/redbean-orm-performance

means that your application's business logic is directly coupled to ORM. And adding new features will take more and more time..

WordPress Plugin: How do I avoid “tight coupling”?

http://stackoverflow.com/questions/8688738/wordpress-plugin-how-do-i-avoid-tight-coupling

dependent upon using the Dictionary object i.e. tightly coupled from my understanding of the term . I wish to keep the Dictionary.. this dictionary dictionary You now have loosely coupled your plugin with the Dictionary the plugin class is not responsible.. directly and your plugin code stays clean and loosely coupled to wordpress itself. class WordpressSystem public function registerFilter..