2838474-11.x
1 unresolved thread
1 unresolved thread
Closes #2838474
Merge request reports
Activity
- Resolved by Kim Pepper
added 907 commits
-
470a754f...18125a46 - 905 commits from branch
project:11.x
- bf66f482 - Merge branch '11.x' into 2838474-11.x
- 7405e684 - Add $throw to chmod()
-
470a754f...18125a46 - 905 commits from branch
60 53 * The stream wrapper manager. 61 54 * @param \Drupal\Core\Site\Settings $settings 62 55 * The site settings. 63 * @param \Psr\Log\LoggerInterface $logger 64 * The file logger channel. 56 * @param \Psr\Log\LoggerInterface|null $logger 57 * (optional) The file logger channel. 65 58 */ 66 public function __construct(StreamWrapperManagerInterface $stream_wrapper_manager, Settings $settings, LoggerInterface $logger) { 59 public function __construct(StreamWrapperManagerInterface $stream_wrapper_manager, Settings $settings, LoggerInterface $logger = NULL) { 67 60 $this->streamWrapperManager = $stream_wrapper_manager; 68 61 $this->settings = $settings; 69 $this->logger = $logger; 62 if ($logger) { 63 @trigger_error('Calling FileSystem::__construct() with the $logger argument is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/3071798', E_USER_DEPRECATED); changed this line in version 7 of the diff
Please register or sign in to reply