This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script setup> | |
| import InputError from '@/Components/InputError.vue' | |
| import InputLabel from '@/Components/InputLabel.vue' | |
| import PrimaryButton from '@/Components/PrimaryButton.vue' | |
| import TextInput from '@/Components/TextInput.vue' | |
| import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue' | |
| import {Head, useForm, usePage} from '@inertiajs/inertia-vue3' | |
| import {Client} from 'africastalking-client' | |
| import {onMounted, ref} from 'vue' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| laravel.test: | |
| build: | |
| context: ./vendor/laravel/sail/runtimes/8.3 | |
| dockerfile: Dockerfile | |
| args: | |
| WWWGROUP: '${WWWGROUP}' | |
| image: sail-8.3/app | |
| ports: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check & fix styling | |
| on: [push] | |
| permissions: | |
| contents: write | |
| jobs: | |
| pint-fixer: | |
| runs-on: ubuntu-latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.3" | |
| services: | |
| traefik: | |
| image: "traefik:latest" | |
| command: | |
| - --providers.docker | |
| - --entrypoints.web.address=:80 | |
| - --entrypoints.websecure.address=:443 | |
| - --api |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class InflightEntertainment | |
| { | |
| private int $flightLength; | |
| private array $movieDuration; | |
| private array $matchedMovies = []; | |
| public function __construct(int $lengthOfFlight, array $movieDuration) | |
| { |