Giter VIP home page Giter VIP logo

Comments (3)

kylekatarnls avatar kylekatarnls commented on May 16, 2024

The following test is successful:
https://github.com/spatie/opening-hours/blob/master/tests/OpeningHoursTest.php#L269

So I guess your $openingHours may not be a OpeningHours instance.

Please provide a minimal standalone code that I can run to reproduce the code.

from opening-hours.

 avatar commented on May 16, 2024

Ok. Maybe it's because of how I call the class? If I call the class like you do in the test, I get a "class not found" error. I used Composer to add your class to my project.

require_once 'vendor/autoload.php';

$opening_hours = Spatie\OpeningHours\OpeningHours::create([
	'monday' => ['10:00-18:00'],
	'tuesday' => ['10:00-18:00'],
	'wednesday' => ['10:00-18:00'],
	'thursday' => ['10:00-18:00'],
	'friday' => ['10:00-18:00'],
	'saturday' => ['10:00-13:00'],
	'sunday' => [],
	'exceptions' => [
		# '2018-12-23' => ['10:00-18:00']
	]
]);

$nextTimeOpen = $opening_hours->nextOpen(new DateTime('2016-09-26 12:00:00'));
echo $nextTimeOpen;

from opening-hours.

kylekatarnls avatar kylekatarnls commented on May 16, 2024

OK, understood, please pay attention to the line number of your error. The conversion is made by echo not by nextOpen because $nextTimeOpen is a DateTime instance and DateTime has no method __toString so it can't be casted to string, you can't echo a native DateTime object:

<?php

require_once 'vendor/autoload.php';

$opening_hours = Spatie\OpeningHours\OpeningHours::create([
    'monday' => ['10:00-18:00'],
    'tuesday' => ['10:00-18:00'],
    'wednesday' => ['10:00-18:00'],
    'thursday' => ['10:00-18:00'],
    'friday' => ['10:00-18:00'],
    'saturday' => ['10:00-13:00'],
    'sunday' => [],
    'exceptions' => [
        # '2018-12-23' => ['10:00-18:00']
    ]
]);

$nextTimeOpen = $opening_hours->nextOpen(new DateTime('2016-09-26 12:00:00'));

echo $nextTimeOpen->format('Y-m-d H:i');

Be aware nextOpen will preserve the typing so if you pass an extended class having a string-cast, such as Carbon, then you can echo it directly.

About namespaces, you can use Spatie\OpeningHours\OpeningHours or having use Spatie\OpeningHours\OpeningHours; at the top of your file, then simply use OpeningHours in the code.

You may also be interested in:
https://github.com/kylekatarnls/business-time

Giving you the following code:

<?php

use Carbon\Carbon;
use Cmixin\BusinessTime;

require_once 'vendor/autoload.php';

BusinessTime::enable(Carbon::class, [
    'monday' => ['10:00-18:00'],
    'tuesday' => ['10:00-18:00'],
    'wednesday' => ['10:00-18:00'],
    'thursday' => ['10:00-18:00'],
    'friday' => ['10:00-18:00'],
    'saturday' => ['10:00-13:00'],
    'sunday' => [],
    'exceptions' => [
        # '2018-12-23' => ['10:00-18:00']
    ]
]);

echo Carbon::parse('2016-09-26 12:00:00')->nextOpen();

from opening-hours.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.