/**
  * Injects the Change Detection Strategy
  *
  * @param ChangeDetectionStrategyInterface $changeDetectionStrategy The strategy to use for detecting changes
  * @return void
  */
 public function injectChangeDetectionStrategy(ChangeDetectionStrategyInterface $changeDetectionStrategy)
 {
     $this->changeDetectionStrategy = $changeDetectionStrategy;
     $this->changeDetectionStrategy->setFileMonitor($this);
 }