You are here

public function Package::setBundle in Features 8.3

Same name and namespace in other branches
  1. 8.4 src/Package.php \Drupal\features\Package::setBundle()

Parameters

string $bundle:

Return value

$this

1 call to Package::setBundle()
Package::setFeaturesInfo in src/Package.php

File

src/Package.php, line 458

Class

Package
Defines a value object for storing package related data.

Namespace

Drupal\features

Code

public function setBundle($bundle) {
  $this->bundle = $bundle;
  return $this;
}