Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
340 B

  1. <?php
  2. namespace App\SearchDisplace\Searchers;
  3. class SearcherFactory extends SearcherCreator
  4. {
  5. public function __construct($name, $description, $rows, $tag = '')
  6. {
  7. parent::__construct($name, $tag, $description);
  8. $this->rows = $rows;
  9. }
  10. public function create()
  11. {
  12. return $this->store();
  13. }
  14. }