public static function AddToWishlistController::create in Commerce Add To Cart Link 8
Same name and namespace in other branches
- 2.x modules/wishlist/src/Controller/AddToWishlistController.php \Drupal\commerce_add_to_wishlist_link\Controller\AddToWishlistController::create()
Instantiates a new instance of this class.
This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.
Overrides ControllerBase::create
File
- modules/
wishlist/ src/ Controller/ AddToWishlistController.php, line 62
Class
- AddToWishlistController
- Defines the add to wishlist controller.
Namespace
Drupal\commerce_add_to_wishlist_link\ControllerCode
public static function create(ContainerInterface $container) {
return new static($container
->get('commerce_add_to_cart_link.token'), $container
->get('commerce_wishlist.wishlist_manager'), $container
->get('commerce_wishlist.wishlist_provider'));
}