Вход Регистрация
Файл: vendor/fakerphp/faker/src/Faker/Provider/pl_PL/Company.php
Строк: 57
<?php

namespace FakerProviderpl_PL;

class 
Company extends FakerProviderCompany
{
    protected static 
$formats = [
        
'{{lastName}}',
        
'{{lastName}}',
        
'{{lastName}} {{companySuffix}}',
        
'{{lastName}} {{companySuffix}}',
        
'{{lastName}} {{companySuffix}}',
        
'{{lastName}} {{companySuffix}}',
        
'{{companyPrefix}} {{lastName}}',
        
'{{lastName}}-{{lastName}}',
    ];

    protected static 
$companySuffix = ['S.A.''i syn''sp. z o.o.''sp. j.''sp. p.''sp. k.''S.K.A''s. c.''P.P.O.F'];

    protected static 
$companyPrefix = ['Grupa''Fundacja''Stowarzyszenie''Spółdzielnia'];

    
/**
     * @example 'Grupa'
     */
    
public static function companyPrefix()
    {
        return static::
randomElement(static::$companyPrefix);
    }

    
/**
     * Register of the National Economy
     *
     * @see http://pl.wikipedia.org/wiki/REGON
     *
     * @return string 9 digit number
     */
    
public static function regon()
    {
        
$weights = [89234567];
        
$regionNumber self::numberBetween(049) * 1;
        
$result = [(int) ($regionNumber 10), $regionNumber 10];

        for (
$i 2$size count($weights); $i $size; ++$i) {
            
$result[$i] = static::randomDigit();
        }
        
$checksum 0;

        for (
$i 0$size count($result); $i $size; ++$i) {
            
$checksum += $weights[$i] * $result[$i];
        }
        
$checksum %= 11;

        if (
$checksum == 10) {
            
$checksum 0;
        }
        
$result[] = $checksum;

        return 
implode(''$result);
    }

    
/**
     * Register of the National Economy, local entity number
     *
     * @see http://pl.wikipedia.org/wiki/REGON
     *
     * @return string 14 digit number
     */
    
public static function regonLocal()
    {
        
$weights = [2485097361248];
        
$result str_split(static::regon());

        for (
$i count($result), $size count($weights); $i $size; ++$i) {
            
$result[$i] = static::randomDigit();
        }
        
$checksum 0;

        for (
$i 0$size count($result); $i $size; ++$i) {
            
$checksum += $weights[$i] * $result[$i];
        }
        
$checksum %= 11;

        if (
$checksum == 10) {
            
$checksum 0;
        }
        
$result[] = $checksum;

        return 
implode(''$result);
    }
}
Онлайн: 1
Реклама