This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Output from running `composer update clue/soap-react --with-dependencies` | |
Your requirements could not be resolved to an installable set of packages. | |
Problem 1 | |
- clue/soap-react dev-master requires clue/buzz-react ^2.5 -> satisfiable by clue/buzz-react[v2.5.0]. | |
- clue/soap-react dev-master requires clue/buzz-react ^2.5 -> satisfiable by clue/buzz-react[v2.5.0]. | |
- Conclusion: don't install clue/buzz-react v2.5.0 | |
- Installation request for clue/soap-react dev-master -> satisfiable by clue/soap-react[dev-master]. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ProductController { | |
/** | |
* Store a new product that belongs to multiple categories. | |
* | |
* @param Request $request | |
* @return Response | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Provides counter cache behavior for HABTM records. | |
* | |
* Example: Posts habtm Tags and tags table contains post_count field | |
* | |
* class Post extends AppModel { | |
* var $name = 'Post'; | |
* var $actsAs = array('HabtmCounterCache'); | |
* var $hasAndBelongsToMany = array('Tag'); |