/**
* @throws SebastianBergmann\RecursionContext\InvalidArgumentException
*/
public function getName(bool $withDataSet = true): ?string
{
if ($withDataSet) {
return $this->name . $this->getDataSetAsString(false);
}
return $this->name;
}
/**
* (PHP 5 >= 5.6.0)<br>
* Discard session array changes and finish session
* @link http://php.net/manual/en/function.session-abort.php
* @return bool true if a session was successfully reinitialized or false on failure.
*/
function session_abort() {}
/**
* (PHP 5 >= 5.6.0)<br>
* Re-initialize session array with original values
* @link http://php.net/manual/en/function.session-reset.php
* @return bool true if a session was successfully reinitialized or false on failure.
*/
function session_reset() {}
Но, судя по структуре и коду, налицо неверное понимание принципа наследования.
// Small screen / tablet
//** Deprecated `@screen-sm` as of v3.0.1
@screen-sm: 907px;
@screen-sm-min: @screen-sm;
//** Deprecated `@screen-tablet` as of v3.0.1
@screen-tablet: @screen-sm-min;
// Medium screen / desktop
//** Deprecated `@screen-md` as of v3.0.1
@screen-md: 992px;
@screen-md-min: @screen-md;
//** Deprecated `@screen-desktop` as of v3.0.1
@screen-desktop: @screen-md-min;
// Large screen / wide desktop
//** Deprecated `@screen-lg` as of v3.0.1
@screen-lg: 1200px;
@screen-lg-min: @screen-lg;
//** Deprecated `@screen-lg-desktop` as of v3.0.1
@screen-lg-desktop: @screen-lg-min;
// So media queries don't overlap when required, provide a maximum
@screen-xs-max: (@screen-sm-min - 1);
@screen-sm-max: (@screen-md-min - 1);
@screen-md-max: (@screen-lg-min - 1);
//== Grid system
//
//## Define your custom responsive grid.
//** Number of columns in the grid.
@grid-columns: 12;
//** Padding between columns. Gets divided in half for the left and right.
@grid-gutter-width: 30px;
// Navbar collapse
//** Point at which the navbar becomes uncollapsed.
@grid-float-breakpoint: @screen-sm-min;
//** Point at which the navbar begins collapsing.
@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);
#myCarousel {
height: 500px;
width: 100%;
& .carousel-inner {
height: inherit;
& .item {
height: 100%;
& img {
height: 100%;
width: 100%;
}
}
}
}
Я запросил последнюю версию PHPUnit с версией PHP 7.1.7 , через composer require ..