Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
TasksProvider.php
Go to the documentation of this file.
1 <?php
7 
12 {
16  private $tasks = [];
17 
21  public function __construct(array $tasks = [])
22  {
23  $this->tasks = $tasks;
24  }
25 
29  public function getTasks()
30  {
31  return $this->tasks;
32  }
33 }